uuid('id')->primary(); $table->string('title'); $table->text('description')->nullable(); $table->timestamp('due_start')->nullable(); $table->timestamp('due_end')->nullable(); $table->timestamp('completed_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('todos'); } };