mastodon/db/migrate/20171026200500_en_to_en_cy.rb
chr a01c7ce321 Cybrespace locale
An alternative locale that replaces "toot" with "ping", "favorite" with
"florp", and "boost" with "relay", as well as a few other miscellaneous
changes. Also includes alternate settings that make the en-CY locale
default instead of en-US, and fixes the timestamps.
2018-11-12 22:35:38 -08:00

17 lines
309 B
Ruby

class EnToEnCy < ActiveRecord::Migration[5.1]
def up
User.find_each do |user|
if user.locale == 'en'
user.update(locale: 'en-CY')
end
end
end
def down
User.find_each do |user|
if user.locale == 'en-CY'
user.update(locale: 'en')
end
end
end
end