AddQuotes::down PHP 메소드

down() 공개 메소드

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