Airports Model/Controller

This commit is contained in:
Your Name
2021-08-04 16:38:31 +02:00
parent 9db5f1b5e3
commit c84c826c3f
14 changed files with 309 additions and 3 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ class BuilderTableCreateAirports extends Migration
$table->engine = 'InnoDB';
$table->bigIncrements('id')->unsigned();
$table->string('iata', 3);
$table->string('icao', 3);
$table->string('icao', 4);
$table->string('name');
$table->string('country');
$table->string('elevation');