Disable a company if needed
This commit is contained in:
parent
c289a8252a
commit
7eb0267c0d
1 changed files with 4 additions and 0 deletions
|
|
@ -16,6 +16,10 @@ class ChangeExpenseCurrencyIdColumn extends Migration
|
|||
Schema::table('expenses', function(Blueprint $table){
|
||||
$table->renameColumn('expense_currency_id', 'currency_id');
|
||||
});
|
||||
|
||||
Schema::table('companies', function(Blueprint $table){
|
||||
$table->boolean('is_disabled')->default(false);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue