6 lines
150 B
Ruby
6 lines
150 B
Ruby
|
class SetDefaultLocaleAtAccounts < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
change_column_default :accounts, :locale, from: nil, to: 0
|
||
|
end
|
||
|
end
|