mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:37:55 +08:00
a2cca2540e
fix issue where days_visited was totally out of sync
22 lines
542 B
Ruby
22 lines
542 B
Ruby
class UserVisit < ActiveRecord::Base
|
|
attr_accessible :visited_at, :user_id
|
|
|
|
# A list of visits in the last month by day
|
|
def self.by_day(sinceDaysAgo=30)
|
|
where("visited_at >= ?", sinceDaysAgo.days.ago).group(:visited_at).order(:visited_at).count
|
|
end
|
|
|
|
def self.ensure_consistency!
|
|
exec_sql <<SQL
|
|
UPDATE users u set days_visited =
|
|
(
|
|
SELECT COUNT(*) FROM user_visits v WHERE v.user_id = u.id
|
|
)
|
|
WHERE days_visited <>
|
|
(
|
|
SELECT COUNT(*) FROM user_visits v WHERE v.user_id = u.id
|
|
)
|
|
SQL
|
|
end
|
|
end
|