From 44550330b4606b12b7ece31edceca29c157e85a7 Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Tue, 9 Jan 2018 16:40:00 -0600 Subject: [PATCH] Expand the subfleets type column --- .../migrations/2017_06_23_011011_create_subfleet_tables.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();