Disable a company if needed

This commit is contained in:
David Bomba 2020-10-30 23:11:07 +11:00
parent c289a8252a
commit 7eb0267c0d

View File

@ -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);
});
}
/**