string('filter_name')->nullable()->after('orientation'); $table->string('filter_class')->nullable()->after('filter_name'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('media', function (Blueprint $table) { $table->dropColumn('filter_name'); $table->dropColumn('filter_class'); }); } }