bigIncrements('id'); $table->string('name', 255); $table->string('name_full', 255); $table->text('contact_emails')->nullable(); $table->text('flight_info')->nullable(); $table->text('check_in')->nullable(); $table->text('baggage')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('airlines'); } }