increments('id'); $table->string('code', 5); $table->string('name', 50); $table->string('country', 2)->nullable(); $table->boolean('active'); $table->timestamps(); $table->index('code'); $table->unique('code'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('airlines'); } }