Chatwoot/db/migrate/20220527040433_add_auto_assignment_configuration_to_inboxes.rb
Sojan Jose 713fdb44ee
feat (ee): APIs to configure an auto assignment limit for inboxes (#4672)
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2022-06-13 20:18:38 +05:30

5 lines
170 B
Ruby

class AddAutoAssignmentConfigurationToInboxes < ActiveRecord::Migration[6.1]
def change
add_column :inboxes, :auto_assignment_config, :jsonb, default: {}
end
end