string('id', 255)->primary(); $table->string('title'); $table->integer('created_at', false, true); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('tasks'); } };