Update 2021_12_15_120346_update_to_payments_table.php
This commit is contained in:
parent
60a8fa1056
commit
b4cde73528
1 changed files with 2 additions and 2 deletions
|
@ -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');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue