create('airports', function ($table) { $table->engine = 'InnoDB'; $table->bigIncrements('id')->unsigned(); $table->string('iata', 3); $table->string('icao', 3); $table->string('name'); $table->string('country'); $table->string('elevation'); $table->string('latitude'); $table->string('longitude'); }); } public function down() { Schema::connection('germanairlinesva_routes')->dropIfExists('airports'); } }