From aa3d5f887dfeb0c895b8ef82cc55311339cb8532 Mon Sep 17 00:00:00 2001 From: Giovanni-Josserand Date: Sat, 28 Mar 2026 16:13:46 +0100 Subject: [PATCH] use native Notification table and migration --- ..._add_unread_to_notification_user_table.php | 32 ------------------- 1 file changed, 32 deletions(-) delete mode 100644 database/migrations/2026_01_07_151814_add_unread_to_notification_user_table.php 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'); - } - }); - } -};