woops, broke the build - set the IATA codes
This commit is contained in:
@@ -16,7 +16,7 @@ class CreateAirlinesTable extends Migration
|
||||
Schema::create('airlines', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('code', 5);
|
||||
$table->string('iata', 5);
|
||||
$table->string('iata', 3)->nullable();
|
||||
$table->string('name', 50);
|
||||
$table->string('country', 2)->nullable();
|
||||
$table->boolean('active');
|
||||
|
||||
@@ -45,6 +45,7 @@ ranks:
|
||||
airlines:
|
||||
- id: 1
|
||||
code: VMS
|
||||
iata: VM
|
||||
name: phpvms airlines
|
||||
active: 1
|
||||
created_at: now
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
airlines:
|
||||
- id: 1
|
||||
code: VMS
|
||||
iata: VM
|
||||
name: phpvms airlines
|
||||
active: 1
|
||||
created_at: now
|
||||
|
||||
Reference in New Issue
Block a user