mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 10:12:34 +00:00
fixes: #895 fixes: #1118 fixes: #1075 Co-authored-by: Pranav Raj S <pranav@thoughtwoot.com>
6 lines
155 B
Ruby
6 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
|