改进 位置

This commit is contained in:
iVampireSP.com 2022-11-23 03:13:02 +00:00
parent 08bedaa67b
commit 112637b8fe

View File

@ -15,7 +15,7 @@ public function up()
{ {
Schema::table('modules', function (Blueprint $table) { Schema::table('modules', function (Blueprint $table) {
// //
$table->enum('status', ['up', 'down', 'maintenance'])->index()->default('down'); $table->enum('status', ['up', 'down', 'maintenance'])->index()->default('down')->after('url');
}); });
} }