remove invalid unsigned call from string column def
This commit is contained in:
@@ -22,8 +22,8 @@ class CreatePirepsTable extends Migration
|
|||||||
$table->string('flight_number', 10)->nullable();
|
$table->string('flight_number', 10)->nullable();
|
||||||
$table->string('route_code', 5)->nullable();
|
$table->string('route_code', 5)->nullable();
|
||||||
$table->string('route_leg', 5)->nullable();
|
$table->string('route_leg', 5)->nullable();
|
||||||
$table->string('dpt_airport_id', 5)->unsigned();
|
$table->string('dpt_airport_id', 5);
|
||||||
$table->string('arr_airport_id', 5)->unsigned();
|
$table->string('arr_airport_id', 5);
|
||||||
$table->double('flight_time', 19, 2)->unsigned();
|
$table->double('flight_time', 19, 2)->unsigned();
|
||||||
$table->double('gross_weight', 19, 2)->nullable();
|
$table->double('gross_weight', 19, 2)->nullable();
|
||||||
$table->double('fuel_used', 19, 2)->nullable();
|
$table->double('fuel_used', 19, 2)->nullable();
|
||||||
|
|||||||
Reference in New Issue
Block a user