id(); $table->string('name'); $table->string('country_code', 2)->unique(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('countries'); } };