id(); $table->string('title', 120); $table->enum('priority', ['low', 'med', 'high'])->default('med'); $table->boolean('done')->default(false); $table->timestamp('snooze_until')->nullable(); $table->timestamp('done_at')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('tasks'); } };