id(); $table->foreignId('project_id')->constrained()->onDelete('cascade'); $table->string('name'); $table->text('description')->nullable(); $table->integer('order')->default(0); $table->string('color', 7)->default('#3b82f6'); // hex color $table->integer('progress_percent')->default(0); $table->date('planned_start')->nullable(); $table->date('planned_end')->nullable(); $table->date('actual_start')->nullable(); $table->date('actual_end')->nullable(); $table->timestamps(); $table->softDeletes(); }); } public function down() { Schema::dropIfExists('phases'); } };