AddQuotes::down PHP Méthode

down() public méthode

Reverse the migrations.
public down ( ) : void
Résultat void
    public function down()
    {
        Schema::table('invoices', function ($table) {
            $table->dropColumn('invoice_type_id');
            $table->dropColumn('quote_id');
            $table->dropColumn('quote_invoice_id');
        });
    }
AddQuotes