Files
discourse/db/migrate/20130621042855_change_supress_to_suppress.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
375 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class ChangeSupressToSuppress < ActiveRecord::Migration[4.2]
2013-06-20 23:41:04 -05:00
def up
SiteSetting.where(name: "suppress_reply_directly_below").update_all(
name: "supress_reply_directly_below",
)
2013-06-20 23:41:04 -05:00
end
def down
SiteSetting.where(name: "supress_reply_directly_below").update_all(
name: "suppress_reply_directly_below",
)
2013-06-20 23:41:04 -05:00
end
end