chatwoot-develop/db/migrate/20250228185548_add_internal_attributes_to_accounts.rb

6 lines
173 B
Ruby
Executable File

class AddInternalAttributesToAccounts < ActiveRecord::Migration[7.0]
def change
add_column :accounts, :internal_attributes, :jsonb, null: false, default: {}
end
end