mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-19 03:52:25 -05:00
15 lines
648 B
Ruby
15 lines
648 B
Ruby
|
class RemoveTopicResponseActions < ActiveRecord::Migration
|
||
|
def up
|
||
|
# 2 notes:
|
||
|
# migrations should never use the object model to run sql, otherwise they are a time bomb
|
||
|
# this action type is not valid, we log a "response" action type anyway due to the watch implementation, its a relic.
|
||
|
#
|
||
|
# There is an open question about we should keep stuff in the user stream on the user page, even if a topic is unwatched
|
||
|
# Eg: I am not watching a topic I created, when somebody responds to the topic should I be notified on the user page?
|
||
|
execute 'delete from user_actions where action_type = 8'
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
end
|
||
|
end
|