Shrink landing rate field size

This commit is contained in:
Nabeel Shahzad
2018-01-30 12:40:04 -06:00
parent f8cac4643e
commit 83d17ab2dd

View File

@@ -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);