mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
9 lines
313 B
Ruby
9 lines
313 B
Ruby
|
class AddViewCountToPosts < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :posts, :views, :integer, default: 0, null: false
|
||
|
|
||
|
execute "UPDATE posts SET views =
|
||
|
(SELECT COUNT(*) FROM post_timings WHERE forum_thread_id = posts.forum_thread_id AND post_number = posts.post_number)"
|
||
|
end
|
||
|
end
|