mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 13:09:33 -06:00
c00d17535f
Followup to 0924f874bd
,
we migrated Chat::Upload records to UploadReference records
there and have not been making new Chat::Upload records
for some time, we can now delete the model and table.
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
|