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