Chatwoot/db/migrate/20200325210612_add_locale_to_account.rb
Sojan Jose bab9d663d2
Feature: API for updating account settings (#645)
* Feature: API for updating account settings

- API to update account locale
- API to update account name
- API to show account info
2020-03-29 12:16:31 +05:30

5 lines
135 B
Ruby

class AddLocaleToAccount < ActiveRecord::Migration[6.0]
def change
add_column :accounts, :locale, :integer, default: 0
end
end