From cdfb7218579b7d7d44efe1908fa22fb48c279589 Mon Sep 17 00:00:00 2001 From: liutk <961510893@qq.com> Date: Sun, 12 Apr 2026 20:06:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=BA=9F=E5=BC=83=E8=BF=81?= =?UTF-8?q?=E7=A7=BB=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...rename_status_column_in_contacts_table.php | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 database/migrations/2026_03_26_213856_rename_status_column_in_contacts_table.php diff --git a/database/migrations/2026_03_26_213856_rename_status_column_in_contacts_table.php b/database/migrations/2026_03_26_213856_rename_status_column_in_contacts_table.php deleted file mode 100644 index 00081a2..0000000 --- a/database/migrations/2026_03_26_213856_rename_status_column_in_contacts_table.php +++ /dev/null @@ -1,28 +0,0 @@ -renameColumn('status', 'is_handle'); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::table('contacts', function (Blueprint $table) { - $table->renameColumn('is_handle', 'status'); - }); - } -};