mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Added flag to disable client portal dashboard
This commit is contained in:
parent
be9e7beaed
commit
ba3aaf47fd
@ -33,6 +33,10 @@ class SupportMultipleTaxRates extends Migration
|
|||||||
$table->string('tax_name2')->nullable();
|
$table->string('tax_name2')->nullable();
|
||||||
$table->decimal('tax_rate2', 13, 3);
|
$table->decimal('tax_rate2', 13, 3);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Schema::table('accounts', function($table) {
|
||||||
|
$table->boolean('enable_client_portal_dashboard')->default(true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Reverse the migrations.
|
* Reverse the migrations.
|
||||||
@ -56,5 +60,9 @@ class SupportMultipleTaxRates extends Migration
|
|||||||
$table->dropColumn('tax_name2');
|
$table->dropColumn('tax_name2');
|
||||||
$table->dropColumn('tax_rate2');
|
$table->dropColumn('tax_rate2');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Schema::table('accounts', function($table) {
|
||||||
|
$table->dropColumn('enable_client_portal_dashboard');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user