mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
13 lines
356 B
Ruby
13 lines
356 B
Ruby
class AddParticipantCountToTopics < ActiveRecord::Migration
|
|
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
|