diff --git a/database/migrations/2024_05_12_020024_create_notifications_table.php b/database/migrations/2024_05_12_020024_create_notifications_table.php deleted file mode 100644 index 4e59ee0..0000000 --- a/database/migrations/2024_05_12_020024_create_notifications_table.php +++ /dev/null @@ -1,31 +0,0 @@ -uuid('id')->primary(); - $table->string('type'); - $table->morphs('notifiable'); - $table->json('data'); - $table->timestamp('read_at')->nullable(); - $table->timestamps(); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::dropIfExists('notifications'); - } -};