AddBuyNowButtons::down PHP Method

down() public method

Reverse the migrations.
public down ( ) : void
return 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