bab9d663d2
* Feature: API for updating account settings - API to update account locale - API to update account name - API to show account info
5 lines
135 B
Ruby
5 lines
135 B
Ruby
class AddLocaleToAccount < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :accounts, :locale, :integer, default: 0
|
|
end
|
|
end
|