id(); $table->string('name'); $table->string('code', 8)->unique(); $table->json('language_codes')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('countries'); } };