mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
6 lines
156 B
Ruby
6 lines
156 B
Ruby
class AddCustomAttributesToContacts < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :contacts, :custom_attributes, :jsonb, default: {}
|
|
end
|
|
end
|