add a has_bid column to the flights table

This commit is contained in:
Nabeel Shahzad
2017-12-12 13:59:05 -06:00
parent e75e2a0ebc
commit a5cf130176
2 changed files with 32 additions and 32 deletions

View File

@@ -27,6 +27,7 @@ class CreateFlightTables extends Migration
$table->string('arr_time', 10)->nullable();
$table->unsignedDecimal('flight_time', 19)->nullable();
$table->text('notes')->nullable();
$table->boolean('has_bid')->default(false);
$table->boolean('active')->default(true);
$table->timestamps();