Update
parent
cc3197f509
commit
77d70be2fa
|
|
@ -17,9 +17,9 @@ return new class extends Migration
|
|||
$table->id();
|
||||
$table->integer('year')->comment('年');
|
||||
$table->tinyInteger('quarter')->comment('季度');
|
||||
$table->bigInteger('area')->comment('面积');
|
||||
$table->bigInteger('product_output')->comment('产量');
|
||||
$table->bigInteger('product_value')->comment('产值');
|
||||
$table->unsignedBigInteger('area')->comment('面积');
|
||||
$table->unsignedBigInteger('product_output')->comment('产量');
|
||||
$table->unsignedBigInteger('product_value')->comment('产值');
|
||||
$table->unsignedBigInteger('created_by')->comment('创建人ID');
|
||||
$table->unsignedBigInteger('updated_by')->comment('修改人ID');
|
||||
$table->timestamps();
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ return new class extends Migration
|
|||
$table->integer('year')->comment('年');
|
||||
$table->tinyInteger('quarter')->comment('季度');
|
||||
$table->string('area')->comment('地区');
|
||||
$table->bigInteger('sales')->comment('销量');
|
||||
$table->unsignedBigInteger('sales')->comment('销量');
|
||||
$table->unsignedBigInteger('created_by')->comment('创建人ID');
|
||||
$table->unsignedBigInteger('updated_by')->comment('修改人ID');
|
||||
$table->timestamps();
|
||||
|
|
|
|||
Loading…
Reference in New Issue