Update 2021_12_15_120346_update_to_payments_table.php

This commit is contained in:
1Day 2022-05-30 11:21:40 +02:00
parent 60a8fa1056
commit b4cde73528

View file

@ -19,7 +19,7 @@ class UpdateToPaymentsTable extends Migration
$table->string('payment_method');
$table->dropColumn('payer');
$table->dropColumn('payer_id');
$table->string('shop_item_product_id');
$table->string('credit_product_id');
});
DB::statement('UPDATE payments SET payment_method="paypal"');
@ -36,7 +36,7 @@ class UpdateToPaymentsTable extends Migration
$table->dropColumn('payment_method');
$table->string('payer_id')->nullable();
$table->text('payer')->nullable();
$table->dropColumn('shop_item_product_id');
$table->dropColumn('credit_product_id');
});
}
}