1
0
Fork 0

去掉status状态字段

develop
vine_liutk 2023-04-26 12:33:16 +08:00
parent aea7d202e6
commit e7ab16e694
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ return new class extends Migration
$table->unsignedTinyInteger('is_recommend')->default(0)->comment('推荐开关');
$table->unsignedTinyInteger('is_enable')->default(1)->comment('显示开关');
$table->unsignedInteger('sort')->default(0)->comment('排序');
$table->unsignedTinyInteger('status')->default(0)->comment('0未使用1种植中2维护中3已废弃');
// $table->unsignedTinyInteger('status')->default(0)->comment('0未使用1种植中2维护中3已废弃');
$table->timestamps();
});
}