From 112637b8fe8b9ae7e9909295ee334bbcc0b62bd3 Mon Sep 17 00:00:00 2001 From: "iVampireSP.com" Date: Wed, 23 Nov 2022 03:13:02 +0000 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E8=BF=9B=20=E4=BD=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2022_11_23_104838_add_status_to_modules_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2022_11_23_104838_add_status_to_modules_table.php b/database/migrations/2022_11_23_104838_add_status_to_modules_table.php index 6048a3b..2c1ddee 100644 --- a/database/migrations/2022_11_23_104838_add_status_to_modules_table.php +++ b/database/migrations/2022_11_23_104838_add_status_to_modules_table.php @@ -15,7 +15,7 @@ public function up() { 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'); }); }