diff --git a/app/Database/migrations/2017_06_28_195426_create_pirep_tables.php b/app/Database/migrations/2017_06_28_195426_create_pirep_tables.php index a5bce79e..f55983db 100644 --- a/app/Database/migrations/2017_06_28_195426_create_pirep_tables.php +++ b/app/Database/migrations/2017_06_28_195426_create_pirep_tables.php @@ -36,7 +36,7 @@ class CreatePirepTables extends Migration $table->unsignedDecimal('zfw', 19)->nullable(); $table->unsignedDecimal('block_fuel', 19)->nullable(); $table->unsignedDecimal('fuel_used', 19)->nullable(); - $table->decimal('landing_rate', 19)->nullable(); + $table->decimal('landing_rate', 8)->nullable(); $table->text('route')->nullable(); $table->text('notes')->nullable(); $table->unsignedTinyInteger('source')->nullable()->default(0);