From ac4e64855493f2204d868fffc50e8b0e331c7327 Mon Sep 17 00:00:00 2001 From: brufdev Date: Tue, 25 Mar 2025 18:56:48 +0000 Subject: [PATCH] Add notifications database table --- ...3_13_200017_create_notifications_table.php | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 database/migrations/2025_03_13_200017_create_notifications_table.php diff --git a/database/migrations/2025_03_13_200017_create_notifications_table.php b/database/migrations/2025_03_13_200017_create_notifications_table.php new file mode 100644 index 0000000..e2e9c54 --- /dev/null +++ b/database/migrations/2025_03_13_200017_create_notifications_table.php @@ -0,0 +1,23 @@ +uuid('id')->primary(); + $table->string('type'); + $table->morphs('notifiable'); + $table->text('data'); + $table->timestamp('read_at')->nullable(); + $table->timestamps(); + }); + } +};