AddInvoiceTypeSupport::up PHP Метод

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

Run the migrations.
public up ( ) : void
Результат void
    public function up()
    {
        if (Schema::hasColumn('invoices', 'is_quote')) {
            DB::update('update invoices set is_quote = is_quote + 1');
            Schema::table('invoices', function ($table) {
                $table->renameColumn('is_quote', 'invoice_type_id');
            });
        }
        Schema::table('accounts', function ($table) {
            $table->boolean('enable_second_tax_rate')->default(false);
        });
    }
AddInvoiceTypeSupport