mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-06 07:26:04 +08:00
11 lines
264 B
Ruby
11 lines
264 B
Ruby
# 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
|