discourse/db/migrate/20250804021210_drop_enable_experimental_sidebar_user_option.rb
David Taylor 1d5d9646c6
DEV: Promote old post-deploy migrations to pre-deploy (#38595)
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.
2026-03-13 19:09:30 +00:00

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