From b07906bdb0127cd73662506b519183cc51a2758e Mon Sep 17 00:00:00 2001 From: Claire Date: Thu, 17 Mar 2022 01:37:03 +0100 Subject: Fix wrong language code for Kurdish languages (#17812) --- db/migrate/20220316233212_update_kurdish_locales.rb | 17 +++++++++++++++++ db/schema.rb | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 db/migrate/20220316233212_update_kurdish_locales.rb (limited to 'db') diff --git a/db/migrate/20220316233212_update_kurdish_locales.rb b/db/migrate/20220316233212_update_kurdish_locales.rb new file mode 100644 index 000000000..36586622f --- /dev/null +++ b/db/migrate/20220316233212_update_kurdish_locales.rb @@ -0,0 +1,17 @@ +class UpdateKurdishLocales < ActiveRecord::Migration[6.1] + class User < ApplicationRecord + # Dummy class, to make migration possible across version changes + end + + disable_ddl_transaction! + + def up + User.where(locale: 'ku').in_batches.update_all(locale: 'ckb') + User.where(locale: 'kmr').in_batches.update_all(locale: 'ku') + end + + def down + User.where(locale: 'ku').in_batches.update_all(locale: 'kmr') + User.where(locale: 'ckb').in_batches.update_all(locale: 'ku') + end +end diff --git a/db/schema.rb b/db/schema.rb index 73a07079d..c92f2d1c5 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2022_03_10_060959) do +ActiveRecord::Schema.define(version: 2022_03_16_233212) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" -- cgit