chore: Add CSAT survey toggle attribute to Inboxes (#2455)

ref: #1890
This commit is contained in:
Sojan Jose
2021-06-18 15:55:48 +05:30
committed by GitHub
parent 6cdefb19a2
commit 50e4bb3e63
3 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddCsatToggleForInbox < ActiveRecord::Migration[6.0]
def change
add_column :inboxes, :csat_survey_enabled, :boolean, default: false
end
end