increments('id'); $table->char('code', 2)->index(); $table->string('phone', 6); $table->string('en', 100)->index(); $table->string('de', 100)->index(); $table->string('es', 100); $table->string('fr', 100); $table->string('it', 100); $table->string('ru', 100); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('countries'); } }