6
0
Fork 0

调整砍价迁移status

release
vine_liutk 2022-04-06 13:53:42 +08:00
parent 3a8ac3123c
commit 2a680ab50f
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class CreateBargainOrdersTable extends Migration
$table->unsignedBigInteger('sku_id')->comment('砍价商品');
$table->unsignedBigInteger('sku_price')->default(0)->comment('原价:分');
$table->unsignedBigInteger('bargain_price')->default(0)->comment('已砍价格:分');
$table->boolean('status')->default(false)->comment('状态:0未开始1已开始2已完成');
$table->unsignedTinyInteger('status')->default(0)->comment('状态:0未开始1已开始2已完成');
$table->timestamp('expire_at')->nullable()->comment('过期时间');
$table->unsignedBigInteger('order_id')->nullable()->comment('下单支付ID');
$table->string('remark')->nullable()->comment('备注');