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