id(); $table->foreignId('user_id')->constrained()->cascadeOnDelete(); $table->string('type', 32); $table->json('data'); $table->timestamp('read_at')->nullable(); $table->timestamps(); $table->index('user_id'); $table->index('read_at'); }); } public function down(): void { Schema::dropIfExists('notifications'); } };