string('type')->default('tech'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('techniques', function(Blueprint $table) { $table->dropColumn('type'); }); } };