6
0
Fork 0

调整商城订单关联砍价单ID

release
vine_liutk 2022-04-06 14:02:35 +08:00
parent 2a680ab50f
commit 4c7f65ad91
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class AddBargainToOrdersTable extends Migration
Schema::table('orders', function (Blueprint $table) {
//
$table->unsignedBigInteger('bargain_amount')->default(0)->comment('砍价金额');
$table->unsignedBigInteger('bargain_order_id')->nullable()->comment('关联砍价单ID');
// $table->unsignedBigInteger('bargain_order_id')->nullable()->comment('关联砍价单ID');
});
}