dev
Jing Li 2022-11-02 10:53:07 +08:00
parent cc3197f509
commit 77d70be2fa
2 changed files with 4 additions and 4 deletions

View File

@ -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();

View File

@ -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();