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'); }); }