increments('id'); $table->string('code'); $table->string('name'); $table->boolean('active'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('airlines'); } }