Fix wrong language code for Kurdish languages (#17812)
This commit is contained in:
parent
779efc7656
commit
b07906bdb0
6 changed files with 24 additions and 6 deletions
17
db/migrate/20220316233212_update_kurdish_locales.rb
Normal file
17
db/migrate/20220316233212_update_kurdish_locales.rb
Normal file
|
@ -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
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue