Chatwoot/db/migrate/20200907094912_rename_user_last_seen.rb
Sojan Jose 31c07771e8
feat: Notification on new messages in conversation (#1204)
fixes: #895
fixes: #1118
fixes: #1075

Co-authored-by: Pranav Raj S <pranav@thoughtwoot.com>
2020-09-10 19:19:15 +05:30

5 lines
155 B
Ruby

class RenameUserLastSeen < ActiveRecord::Migration[6.0]
def change
rename_column :conversations, :user_last_seen_at, :contact_last_seen_at
end
end