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