Chatwoot/db/migrate/20220718123938_add_custom_attributes_to_account.rb

5 lines
155 B
Ruby

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