615a575bdd
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
5 lines
137 B
Ruby
5 lines
137 B
Ruby
class RemoveContactPubsubToken < ActiveRecord::Migration[6.1]
|
|
def change
|
|
remove_column :contacts, :pubsub_token, :string
|
|
end
|
|
end
|