Chatwoot/db/migrate/20200819190629_add_custom_attributes_to_contacts.rb
Sojan Jose cdd385b269
feat: Custom Attributes for contacts (#1158)
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
2020-08-21 19:30:27 +05:30

5 lines
156 B
Ruby

class AddCustomAttributesToContacts < ActiveRecord::Migration[6.0]
def change
add_column :contacts, :custom_attributes, :jsonb, default: {}
end
end