engine = 'InnoDB'; $table->increments('id')->index(); $table->string('code'); $table->string('name'); $table->integer('phonecode'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('countries'); } }