Chatwoot/db/migrate/20210827120929_add_custom_attributes_to_user.rb
Sojan Jose ad83d1bb71
feat: Platform API improvements (#2900)
- Platform APIs to add and update custom attributes to users
- Platform APIs to delete accounts
- Platform APIs to delete users
2021-09-02 18:29:45 +05:30

5 lines
149 B
Ruby

class AddCustomAttributesToUser < ActiveRecord::Migration[6.1]
def change
add_column :users, :custom_attributes, :jsonb, default: {}
end
end