mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 01:41:36 +08:00
This promotes all post-migrations which existed in `v2026.1` to regular pre-deploy migrations. We do this after each stable/esr release to reduce the probability of pre/post deploy timing issues.
12 lines
361 B
Ruby
12 lines
361 B
Ruby
# frozen_string_literal: true
|
|
class DropEnableExperimentalSidebarUserOption < ActiveRecord::Migration[8.0]
|
|
DROPPED_COLUMNS = { user_options: %i[enable_experimental_sidebar] }
|
|
|
|
def up
|
|
DROPPED_COLUMNS.each { |table, columns| Migration::ColumnDropper.execute_drop(table, columns) }
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|