discourse/plugins/chat/db/migrate/20221018091412_migrate_chat_channels.rb
Loïc Guitaut 25138db433 DEV: Promote historic post_deploy migrations
This commit promotes all post_deploy migrations which existed in
Discourse v3.0.0 (timestamp <= 20221212234948)
2023-07-26 10:36:37 +02:00

11 lines
318 B
Ruby

# frozen_string_literal: true
class MigrateChatChannels < ActiveRecord::Migration[7.0]
def up
DB.exec("UPDATE chat_channels SET type='CategoryChannel' WHERE chatable_type = 'Category'")
DB.exec(
"UPDATE chat_channels SET type='DMChannel' WHERE chatable_type = 'DirectMessageChannel'",
)
end
end