Migration to update what we can for locales

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2023-12-19 17:42:56 +00:00
parent b9a877d92d
commit c306ba550c

View file

@ -3,6 +3,9 @@
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use \App\Helpers\Helper;
use \App\Models\Setting;
use \App\Models\User;
class FixLanguageDirs extends Migration
{
@ -13,15 +16,22 @@ class FixLanguageDirs extends Migration
*/
public function up()
{
// Pull the autoglossonym array from the localizations translation file
foreach (trans('localizations.languages') as $abbr) {
$select .= '<option value="'.$abbr.'"'.(($selected == $abbr) ? ' selected="selected" role="option" aria-selected="true"' : ' aria-selected="false"').'>'.$locale.'</option> ';
/**
* Update the settings table
*/
$settings = Setting::getSettings();
if ($settings->locale != '') {
DB::table('settings')->update(['locale' => Helper::mapLegacyLocale($settings->locale)]);
}
Schema::table('models', function (Blueprint $table) {
$table->integer('min_amt')->nullable()->change();
});
/**
* Update the users table
*/
$users = User::whereNotNull('locale')->whereNull('deleted_at')->get();
// Skip the model in case the validation rules have changed
foreach ($users as $user) {
DB::table('users')->where('id', $user->id)->update(['locale' => Helper::mapLegacyLocale($user->locale)]);
}
}