AddBuyNowButtons::down PHP Метод

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

Reverse the migrations.
public down ( ) : void
Результат void
    public function down()
    {
        Schema::table('accounts', function ($table) {
            $table->dropColumn('enable_buy_now_buttons');
            $table->text('invoice_design')->nullable();
        });
        Schema::table('datetime_formats', function ($table) {
            $table->string('label');
        });
        Schema::table('date_formats', function ($table) {
            $table->string('label');
        });
    }
AddBuyNowButtons