Add field to charge an expense to a user #130

This commit is contained in:
Nabeel Shahzad
2018-03-06 17:15:42 -06:00
parent dad923489b
commit c7925db0e7
4 changed files with 18 additions and 6 deletions

View File

@@ -16,6 +16,7 @@ class CreateExpensesTable extends Migration
$table->string('name');
$table->unsignedInteger('amount');
$table->unsignedTinyInteger('type');
$table->boolean('charge_to_user')->nullable()->default(false);
$table->boolean('multiplier')->nullable()->default(0);
$table->boolean('active')->nullable()->default(true);