discourse/db/migrate/20120704201743_add_view_count_to_posts.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
348 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddViewCountToPosts < ActiveRecord::Migration[4.2]
2013-02-06 03:16:51 +08:00
def change
add_column :posts, :views, :integer, default: 0, null: false
2013-02-26 00:42:20 +08:00
execute "UPDATE posts SET views =
2013-02-06 03:16:51 +08:00
(SELECT COUNT(*) FROM post_timings WHERE forum_thread_id = posts.forum_thread_id AND post_number = posts.post_number)"
end
end