2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 09:10:25 +08:00
discourse/db/migrate/20120704201743_add_view_count_to_posts.rb

8 lines
317 B
Ruby

class AddViewCountToPosts < ActiveRecord::Migration[4.2]
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