fix: Set account default language in account API (#5086)

This commit is contained in:
Tejaswini Chile
2022-07-26 22:42:20 +05:30
committed by GitHub
parent 699b01c1d1
commit f6891aebbb
9 changed files with 26 additions and 6 deletions

View File

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