Migrate auto closed topics too

This commit is contained in:
Robin Ward
2015-07-29 12:20:35 -04:00
parent faf4f44776
commit 201617811e
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,16 @@
class MigrateAutoClosePosts < ActiveRecord::Migration
def up
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
sql = "UPDATE posts SET action_code = 'autoclosed.enabled', post_type = 3 "
sql << "WHERE post_type = 2 AND ("
sql << strings.map {|s| "raw ~* #{ActiveRecord::Base.connection.quote(s)}" }.join(' OR ')
sql << ")"
execute sql
end
end