id(); $table->unsignedBigInteger('user_id'); $table->unsignedBigInteger('consultation_id'); $table->string('message'); $table->boolean('is_read')->default(false); $table->timestamps(); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); $table->foreign('consultation_id')->references('id')->on('consultations')->onDelete('cascade'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('notifications'); } };