2017-08-31 00:06:56 -04:00
|
|
|
class MigrateOldMovedPosts < ActiveRecord::Migration[4.2]
|
2015-07-31 19:06:19 -04:00
|
|
|
def up
|
|
|
|
execute "UPDATE posts SET post_type = 3, action_code = 'split_topic' WHERE post_type = 2 AND raw ~* '^I moved [a\\d]+ posts? to a new topic:'"
|
|
|
|
execute "UPDATE posts SET post_type = 3, action_code = 'split_topic' WHERE post_type = 2 AND raw ~* '^I moved [a\\d]+ posts? to an existing topic:'"
|
|
|
|
end
|
|
|
|
end
|