AddExtrasOrderOnUserProfileCustomization::down PHP Метод

down() публичный Метод

Reverse the migrations.
public down ( ) : void
Результат void
    public function down()
    {
        Schema::table('user_profile_customizations', function ($table) {
            $table->dropColumn('extras_order');
        });
    }
AddExtrasOrderOnUserProfileCustomization