increments('id'); $table->integer('account_id'); $table->integer('people_id'); $table->string('title'); $table->longText('description')->nullable(); $table->enum('status', ['completed', 'inprogress', 'archived']); $table->dateTime('completed_at')->nullable(); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('tasks'); } }