713fdb44ee
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
5 lines
170 B
Ruby
5 lines
170 B
Ruby
class AddAutoAssignmentConfigurationToInboxes < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :inboxes, :auto_assignment_config, :jsonb, default: {}
|
|
end
|
|
end
|