~cytrogen/masto-fe

ref: 67055b034300393bd9a345bc057e86baa848ae35 masto-fe/db/migrate/20220316233212_update_kurdish_locales.rb -rw-r--r-- 496 bytes
67055b03 — Claire Fix import order inconsistencies (#2289) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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