mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 06:04:09 +08:00
d5d0bab19d
This commit promotes all post_deploy migrations which existed in Discourse v3.1.0 (timestamp <= 20230405121454)
14 lines
286 B
Ruby
14 lines
286 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DropChatUploads < ActiveRecord::Migration[7.0]
|
|
DROPPED_TABLES ||= %i[chat_uploads]
|
|
|
|
def up
|
|
DROPPED_TABLES.each { |table| Migration::TableDropper.execute_drop(table) }
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|