discourse/db/migrate/20150729150523_migrate_auto...

19 lines
651 B
Ruby
Raw Normal View History

class MigrateAutoClosePosts < ActiveRecord::Migration[4.2]
2015-07-29 12:20:35 -04:00
def up
I18n.overrides_disabled do
strings = []
%w(days hours lastpost_days lastpost_hours lastpost_minutes).map do |k|
strings << I18n.t("topic_statuses.autoclosed_enabled_#{k}.one")
strings << I18n.t("topic_statuses.autoclosed_enabled_#{k}.other").sub("%{count}", "\\d+")
end
2015-07-29 12:20:35 -04:00
sql = "UPDATE posts SET action_code = 'autoclosed.enabled', post_type = 3 "
sql << "WHERE post_type = 2 AND ("
2017-07-27 21:20:09 -04:00
sql << strings.map { |s| "raw ~* #{ActiveRecord::Base.connection.quote(s)}" }.join(' OR ')
sql << ")"
2015-07-29 12:20:35 -04:00
execute sql
end
2015-07-29 12:20:35 -04:00
end
end