diff --git a/database/migrations/2026_01_07_151814_add_unread_to_notification_user_table.php b/database/migrations/2026_01_07_151814_add_unread_to_notification_user_table.php deleted file mode 100644 index dbdd46a..0000000 --- a/database/migrations/2026_01_07_151814_add_unread_to_notification_user_table.php +++ /dev/null @@ -1,32 +0,0 @@ -boolean('unread')->default(true); - } - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::table('notification_user', function (Blueprint $table) { - if (Schema::hasColumn('notification_user', 'unread')) { - $table->dropColumn('unread'); - } - }); - } -};