mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 11:37:58 +00:00
This PR adds service to automate account abuse detection. Currently based on the signup name and URL, could potentially add more context such as usage analysis, message metadata etc.
6 lines
173 B
Ruby
6 lines
173 B
Ruby
class AddInternalAttributesToAccounts < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :accounts, :internal_attributes, :jsonb, null: false, default: {}
|
|
end
|
|
end
|