id(); $table->foreignIdFor(TaskList::class); $table->text('content'); $table->boolean('completed')->default(false); $table->timestamp('completed_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('tasks'); } };