2017-08-31 00:06:56 -04:00
|
|
|
class AddViewCountToPosts < ActiveRecord::Migration[4.2]
|
2013-02-05 14:16:51 -05:00
|
|
|
def change
|
|
|
|
add_column :posts, :views, :integer, default: 0, null: false
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
execute "UPDATE posts SET views =
|
2013-02-05 14:16:51 -05:00
|
|
|
(SELECT COUNT(*) FROM post_timings WHERE forum_thread_id = posts.forum_thread_id AND post_number = posts.post_number)"
|
|
|
|
end
|
|
|
|
end
|