You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
527 B
19 lines
527 B
# frozen_string_literal: true |
|
|
|
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
|
|
|