string('status')->default('pending'); $table->unique('hash'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('aos_seeds', function(Blueprint $table) { $table->dropColumn('status'); $table->dropIndex('aos_seeds_hash_unique'); }); } };