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