Chatwoot/db/migrate/20210916060144_add_custom_attributes_to_conversations.rb
2021-09-22 10:46:48 +05:30

5 lines
166 B
Ruby

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