diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-03-17 19:23:39 +0100 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2022-03-17 19:23:39 +0100 |
commit | 4e3c68e0256e6aab4bb30f350dac4fc4386cb0b9 (patch) | |
tree | 00a495e6f4abf68dbb9ecceae729c9e5345c318a /db/migrate | |
parent | ac300173f68d2497cccf4e5bf558d95fc6105c96 (diff) | |
parent | 443d114574ef152f14815afc5c4ed5c977dd9205 (diff) |
Merge branch 'main' into glitch-soc/merge-upstream
Conflicts: - `app/helpers/accounts_helper.rb`: Upstream fixed an issue that glitch-soc did not have, in a place with glitch-soc changes to hide the number of followers. Kept glitch-soc's code.
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20220316233212_update_kurdish_locales.rb | 17 |
1 files changed, 17 insertions, 0 deletions
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 |