first version
This commit is contained in:
@@ -18,7 +18,7 @@ return new class extends Migration
|
||||
$table->increments('id')->comment('采购单ID');
|
||||
$table->string('purchase_no', 32)->unique()->comment('采购单编号');
|
||||
$table->date('purchase_date')->comment('采购日期');
|
||||
$table->integer('status')->default(0)->comment('采购单状态(0草稿 1已确认 2部分发送 3全部发送 4已完成)');
|
||||
$table->integer('status')->default(0)->comment('采购单状态(0待发送 1部分发送 2全部发送 3已完成)');
|
||||
$table->decimal('total_quantity', 10, 2)->default(0)->comment('采购总量');
|
||||
$table->decimal('total_weight', 10, 3)->default(0)->comment('采购总重量');
|
||||
$table->decimal('estimate_amount', 10, 2)->default(0)->comment('预估金额(按订货汇总)');
|
||||
|
||||
Reference in New Issue
Block a user