about summary refs log tree commit diff
path: root/db/migrate/20191007013357_update_pt_locales.rb
blob: 9e8f8b4241653923e732f8af9433964a7d60f267 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class UpdatePtLocales < ActiveRecord::Migration[5.2]
  class User < ApplicationRecord
    # Dummy class, to make migration possible across version changes
  end

  disable_ddl_transaction!

  def up
    User.where(locale: 'pt').in_batches.update_all(locale: 'pt-PT')
  end

  def down
    User.where(locale: 'pt-PT').in_batches.update_all(locale: 'pt')
  end
end