增加提货数量+领取时间和提货时间

This commit is contained in:
2023-01-30 11:49:31 +08:00
parent ee394e1ac8
commit a0e9eac706
7 changed files with 29 additions and 16 deletions

View File

@@ -20,6 +20,7 @@ class CreateAreaCodesTable extends Migration
$table->unsignedBigInteger('area_id')->index();
$table->string('code');
$table->boolean('status')->default(0);
$table->timestamp('get_at')->nullable()->comment('领取时间');
$table->timestamp('pick_at')->nullable()->comment('提货时间');
$table->timestamps();
});