id(); $table->string('iso')->nullable(); $table->string('name')->nullable(); $table->string('iso3')->nullable(); $table->string('num_code')->nullable(); $table->string('phone_code')->nullable(); $table->string('num_length')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('countries'); } }