text('requirements')->nullable()->default(null); $table->text('attribution')->default(''); }); Schema::table('technique_translations', function(Blueprint $table) { $table->text('attribution')->default(''); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('techniques', function(Blueprint $table) { $table->dropColumn('requirements'); $table->dropColumn('attribution'); }); Schema::table('technique_translations', function(Blueprint $table) { $table->dropColumn('attribution'); }); } };