add/set ICAO and logo for airlines
This commit is contained in:
@@ -15,10 +15,11 @@ class CreateAirlinesTable extends Migration
|
||||
{
|
||||
Schema::create('airlines', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('code', 5);
|
||||
$table->string('icao', 5);
|
||||
$table->string('iata', 3)->nullable();
|
||||
$table->string('name', 50);
|
||||
$table->string('country', 2)->nullable();
|
||||
$table->string('logo', 255)->nullable();
|
||||
$table->boolean('active');
|
||||
$table->timestamps();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user