id(); $table->foreignId('user_id')->constrained()->cascadeOnDelete(); $table->string('case_name'); $table->string('case_reference')->unique()->nullable(); $table->string('status')->default('active'); $table->timestamps(); $table->index('user_id'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('timelines'); } };