mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-01 02:44:35 -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){
|
Schema::table('expenses', function(Blueprint $table){
|
||||||
$table->renameColumn('expense_currency_id', 'currency_id');
|
$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