id(); $table->unsignedBigInteger('user_id')->nullable(); $table->string('tipo'); $table->string('titolo'); $table->text('messaggio'); $table->string('link')->nullable(); $table->boolean('is_read')->default(false); $table->timestamp('read_at')->nullable(); $table->timestamps(); $table->index('user_id'); }); } } public function down(): void { Schema::dropIfExists('notifiche'); } };