id(); $table->string('name', 255); $table->bigInteger('parent_id'); $table->text('description')->nullable(); $table->foreignId('project_id')->constrained('projects'); $table->foreignId('status_id')->constrained('task_statuses'); $table->foreignId('created_by_id')->constrained('users'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('tasks'); } };