diff --git a/database/migrations/2017_06_28_195426_create_pireps_table.php b/database/migrations/2017_06_28_195426_create_pireps_table.php index e6ccb705..5864d453 100644 --- a/database/migrations/2017_06_28_195426_create_pireps_table.php +++ b/database/migrations/2017_06_28_195426_create_pireps_table.php @@ -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();