AddPageSize::down PHP Метод

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

Reverse the migrations.
public down ( ) : void
Результат void
    public function down()
    {
        Schema::table('accounts', function ($table) {
            $table->dropColumn('page_size');
            $table->dropColumn('live_preview');
            $table->dropColumn('invoice_number_padding');
        });
        Schema::table('fonts', function ($table) {
            $table->boolean('is_early_access');
        });
        Schema::table('expenses', function ($table) {
            $table->dropForeign('expenses_expense_category_id_foreign');
            $table->dropColumn('expense_category_id');
        });
        Schema::dropIfExists('expense_categories');
    }
AddPageSize