Archived
2
0
Fork 0
This repository has been archived on 2024-06-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mastodon/db/migrate/20220316233212_update_kurdish_locales.rb

17 lines
496 B
Ruby

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