fixing default

This commit is contained in:
akemidx 2024-03-19 15:51:05 -04:00
parent 3680e04817
commit dc29717623

View file

@ -16,7 +16,7 @@ class UpdateLegacyLocations extends Migration
// //
Schema::table('users', function (Blueprint $table) { Schema::table('users', function (Blueprint $table) {
// //
$table->string('locale', 5)->nullable()->default(config('app.fallback_locale'))->change(); $table->string('locale', 10)->nullable()->default('en-US')->change();
}); });
} }