From ff78a8c8defbd00283667176525556352ad84c3b Mon Sep 17 00:00:00 2001 From: DariusIII Date: Fri, 23 Jan 2026 15:20:39 +0100 Subject: [PATCH] CS fixes --- ...026_01_23_150053_create_user_excluded_categories_table.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/migrations/2026_01_23_150053_create_user_excluded_categories_table.php b/database/migrations/2026_01_23_150053_create_user_excluded_categories_table.php index 752e9e0df..062b6d1c4 100644 --- a/database/migrations/2026_01_23_150053_create_user_excluded_categories_table.php +++ b/database/migrations/2026_01_23_150053_create_user_excluded_categories_table.php @@ -12,7 +12,7 @@ return new class extends Migration public function up(): void { // Use raw SQL to ensure exact column type matching with existing tables - DB::statement(" + DB::statement(' CREATE TABLE `user_excluded_categories` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `users_id` int(10) unsigned NOT NULL, @@ -25,7 +25,7 @@ return new class extends Migration CONSTRAINT `FK_uec_users` FOREIGN KEY (`users_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_uec_categories` FOREIGN KEY (`categories_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci - "); + '); } /**