mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 10:12:34 +00:00
6 lines
154 B
Ruby
6 lines
154 B
Ruby
class AddCsatToggleForInbox < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :inboxes, :csat_survey_enabled, :boolean, default: false
|
|
end
|
|
end
|