create('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('aircraft_manufacturers'); } }