diff --git a/app/Database/migrations/2017_06_23_011011_create_subfleet_tables.php b/app/Database/migrations/2017_06_23_011011_create_subfleet_tables.php index 7a0e2ef4..6cbdeb47 100644 --- a/app/Database/migrations/2017_06_23_011011_create_subfleet_tables.php +++ b/app/Database/migrations/2017_06_23_011011_create_subfleet_tables.php @@ -17,7 +17,7 @@ class CreateSubfleetTables extends Migration $table->increments('id'); $table->unsignedInteger('airline_id')->nullable(); $table->string('name', 50); - $table->string('type', 7); + $table->string('type', 50); $table->unsignedTinyInteger('fuel_type')->nullable(); $table->unsignedDecimal('cargo_capacity', 19)->nullable(); $table->unsignedDecimal('fuel_capacity', 19)->nullable();