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