2017-08-31 00:06:56 -04:00
|
|
|
class AddParticipantCountToTopics < ActiveRecord::Migration[4.2]
|
2013-11-14 14:32:41 -05:00
|
|
|
def up
|
|
|
|
add_column :topics, :participant_count, :integer, default: 1
|
|
|
|
|
|
|
|
execute "UPDATE topics SET participant_count =
|
|
|
|
(SELECT COUNT(DISTINCT p.user_id) FROM posts AS p WHERE p.topic_id = topics.id)"
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_column :topics, :participant_count
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|