mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 13:08:40 +08:00
This commit promotes all post_deploy migrations which existed in Discourse v3.0.0 (timestamp <= 20221212234948)
15 lines
372 B
Ruby
Vendored
15 lines
372 B
Ruby
Vendored
# 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
|