From 4c7f65ad91305c131990bec42e1b618a4c9d3594 Mon Sep 17 00:00:00 2001 From: vine_liutk <961510893@qq.com> Date: Wed, 6 Apr 2022 14:02:35 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=95=86=E5=9F=8E=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E5=85=B3=E8=81=94=E7=A0=8D=E4=BB=B7=E5=8D=95ID?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2022_04_06_112225_add_bargain_to_orders_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2022_04_06_112225_add_bargain_to_orders_table.php b/database/migrations/2022_04_06_112225_add_bargain_to_orders_table.php index 227b692f..31b56789 100644 --- a/database/migrations/2022_04_06_112225_add_bargain_to_orders_table.php +++ b/database/migrations/2022_04_06_112225_add_bargain_to_orders_table.php @@ -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'); }); }