Files
leadchat/db/migrate/20220720123615_set_default_locale_at_accounts.rb
2022-07-26 22:42:20 +05:30

6 lines
150 B
Ruby

class SetDefaultLocaleAtAccounts < ActiveRecord::Migration[6.1]
def change
change_column_default :accounts, :locale, from: nil, to: 0
end
end