contract migration stuff

This commit is contained in:
2019-04-28 03:06:54 -05:00
parent 5096444ab2
commit f71b966225

View File

@@ -20,7 +20,7 @@ class CreateContractsTable extends Migration
$table->string('type');
$table->date('end_date');
$table->text('body');
$table->boolean('finished')->default('false');
$table->boolean('finished')->default(false);
$table->decimal('final_cost');
$table->timestamps();
});