create('ga_aircraft_manufacturers', function ($table) { //Schema::create('ga_aircraft_manufacturers', function ($table) { $table->engine = 'InnoDB'; $table->bigIncrements('id')->unsigned(); $table->string('name'); $table->text('history'); $table->string('link'); }); } public function down() { Schema::connection('germanairlinesva_fleet')->dropIfExists('ga_aircraft_manufacturers'); //Schema::dropIfExists('ga_aircraft_manufacturers'); } }