mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
Disable a company if needed
This commit is contained in:
parent
c289a8252a
commit
7eb0267c0d
@ -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…
x
Reference in New Issue
Block a user