Chatwoot/db/migrate/20210426191914_migration_remove_locked_from_conversation.rb
Sojan Jose 4b49d21543
chore: Add event for conversations transferred to Bot (#2167)
* chore:  Event for conversation transferred to Bot

Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
Co-authored-by: Nithin David <webofnithin@gmail.com>
2021-04-28 20:53:23 +05:30

5 lines
150 B
Ruby

class MigrationRemoveLockedFromConversation < ActiveRecord::Migration[6.0]
def change
remove_column :conversations, :locked, :boolean
end
end