remove invalid unsigned call from string column def

This commit is contained in:
Nabeel Shahzad
2017-12-01 22:34:59 -06:00
parent 6b1e52f70b
commit bf2a624b51

View File

@@ -22,8 +22,8 @@ class CreatePirepsTable extends Migration
$table->string('flight_number', 10)->nullable();
$table->string('route_code', 5)->nullable();
$table->string('route_leg', 5)->nullable();
$table->string('dpt_airport_id', 5)->unsigned();
$table->string('arr_airport_id', 5)->unsigned();
$table->string('dpt_airport_id', 5);
$table->string('arr_airport_id', 5);
$table->double('flight_time', 19, 2)->unsigned();
$table->double('gross_weight', 19, 2)->nullable();
$table->double('fuel_used', 19, 2)->nullable();