AddQuotes::up PHP Method

up() public method

Run the migrations.
public up ( ) : void
return void
    public function up()
    {
        Schema::table('invoices', function ($table) {
            $table->boolean('invoice_type_id')->default(0);
            $table->unsignedInteger('quote_id')->nullable();
            $table->unsignedInteger('quote_invoice_id')->nullable();
        });
    }
AddQuotes