id(); $table->string('IATA_code', 3)->nullable(); $table->string('ICAO_code', 4)->nullable(); $table->string('name', 81)->nullable(); $table->string('internal_name', 81)->nullable(); $table->string('country_code', 2)->nullable(); $table->string('country_name', 36)->nullable(); $table->boolean('active'); $table->string('logo', 40)->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('airlines'); } };