9 lines
312 B
Ruby
9 lines
312 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
|