0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 05:42:36 +08:00
discourse/db/migrate/20130621042855_change_supress_to_suppress.rb
2023-01-09 11:59:41 +00:00

15 lines
375 B
Ruby
Vendored

# frozen_string_literal: true
class ChangeSupressToSuppress < ActiveRecord::Migration[4.2]
def up
SiteSetting.where(name: "suppress_reply_directly_below").update_all(
name: "supress_reply_directly_below",
)
end
def down
SiteSetting.where(name: "supress_reply_directly_below").update_all(
name: "suppress_reply_directly_below",
)
end
end