Chatwoot/db/migrate/20210618095823_add_csat_toggle_for_inbox.rb

5 lines
154 B
Ruby

class AddCsatToggleForInbox < ActiveRecord::Migration[6.0]
def change
add_column :inboxes, :csat_survey_enabled, :boolean, default: false
end
end