id(); $table->string('name'); $table->string('code'); $table->json('language_codes') ->default('[]'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('countries'); } };