bigIncrements('id'); $table->string('title')->nullable(); $table->string('feature')->unique(); $table->text('description')->nullable(); $table->timestamp('active_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('features'); } }