discourse/plugins/chat/db/migrate/20220516142658_remove_email_statuses_table.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

15 lines
379 B
Ruby

# frozen_string_literal: true
class RemoveEmailStatusesTable < ActiveRecord::Migration[7.0]
def up
remove_index :chat_message_email_statuses, :status
remove_index :chat_message_email_statuses, %i[user_id chat_message_id]
Migration::TableDropper.execute_drop("chat_message_email_statuses")
end
def down
raise ActiveRecord::IrreversibleMigration
end
end