Chatwoot/db/migrate/20220418094715_remove_contact_pubsub_token.rb
Sojan Jose 615a575bdd
fix: Agent typing indicator for website widget (#4495)
When we migrated the pubsub tokens from contact to contact inboxes, we missed out on doing this update for the typing indicator events. Hence the agent typing events weren't visible on the widget side. This change fixes that and removes the necessary column contact pubsub token from the model.

fixes: #4476
2022-04-18 19:05:45 +05:30

5 lines
137 B
Ruby

class RemoveContactPubsubToken < ActiveRecord::Migration[6.1]
def change
remove_column :contacts, :pubsub_token, :string
end
end