id(); $table->string('name', 255); $table->text('description')->nullable(); $table->string('file', 255)->nullable(); $table->foreignId('task_id')->constrained('tasks'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('notes'); } };