AddExtrasOrderOnUserProfileCustomization::down PHP Method

down() public method

Reverse the migrations.
public down ( ) : void
return void
    public function down()
    {
        Schema::table('user_profile_customizations', function ($table) {
            $table->dropColumn('extras_order');
        });
    }
AddExtrasOrderOnUserProfileCustomization