mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 07:30:16 +08:00
25138db433
This commit promotes all post_deploy migrations which existed in Discourse v3.0.0 (timestamp <= 20221212234948)
16 lines
372 B
Ruby
16 lines
372 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "migration/column_dropper"
|
|
|
|
class DropOldBookmarkColumnsV2 < ActiveRecord::Migration[7.0]
|
|
DROPPED_COLUMNS ||= { bookmarks: %i[post_id for_topic] }
|
|
|
|
def up
|
|
DROPPED_COLUMNS.each { |table, columns| Migration::ColumnDropper.execute_drop(table, columns) }
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|