mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
6 lines
170 B
Ruby
6 lines
170 B
Ruby
class AddAutoAssignmentConfigurationToInboxes < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :inboxes, :auto_assignment_config, :jsonb, default: {}
|
|
end
|
|
end
|