diff --git a/database/migrations/2016_03_23_215049_support_multiple_tax_rates.php b/database/migrations/2016_03_23_215049_support_multiple_tax_rates.php index fce65c240ea7..4c2d8a29b931 100644 --- a/database/migrations/2016_03_23_215049_support_multiple_tax_rates.php +++ b/database/migrations/2016_03_23_215049_support_multiple_tax_rates.php @@ -33,6 +33,10 @@ class SupportMultipleTaxRates extends Migration $table->string('tax_name2')->nullable(); $table->decimal('tax_rate2', 13, 3); }); + + Schema::table('accounts', function($table) { + $table->boolean('enable_client_portal_dashboard')->default(true); + }); } /** * Reverse the migrations. @@ -56,5 +60,9 @@ class SupportMultipleTaxRates extends Migration $table->dropColumn('tax_name2'); $table->dropColumn('tax_rate2'); }); + + Schema::table('accounts', function($table) { + $table->dropColumn('enable_client_portal_dashboard'); + }); } } \ No newline at end of file