DEV: remove experimental lightbox site setting (#36377)

Follow up to #36375 to remove the redundant site setting from the
database.
This commit is contained in:
David Battersby
2025-12-03 15:54:10 +04:00
committed by GitHub
parent 27ecf6f67c
commit 2fa5d0dfed
@@ -0,0 +1,11 @@
# frozen_string_literal: true
class RemoveExperimentalLightboxSiteSetting < ActiveRecord::Migration[8.0]
def up
execute "DELETE FROM site_settings WHERE name='experimental_lightbox'"
end
def down
raise ActiveRecord::IrreversibleMigration
end
end