2013-02-06 03:16:51 +08:00
|
|
|
class UserVisit < ActiveRecord::Base
|
2013-02-28 11:39:42 +08:00
|
|
|
|
2014-01-25 04:19:20 +08:00
|
|
|
# A count of visits in the last month by day
|
2014-11-05 06:08:39 +08:00
|
|
|
def self.by_day(start_date, end_date)
|
2014-12-30 22:06:15 +08:00
|
|
|
where('visited_at >= ? and visited_at <= ?', start_date.to_date, end_date.to_date).group(:visited_at).order(:visited_at).count
|
2013-02-28 11:39:42 +08:00
|
|
|
end
|
2013-04-05 14:43:48 +08:00
|
|
|
|
|
|
|
def self.ensure_consistency!
|
|
|
|
exec_sql <<SQL
|
2013-10-04 11:28:49 +08:00
|
|
|
UPDATE user_stats u set days_visited =
|
2013-04-05 14:43:48 +08:00
|
|
|
(
|
2013-10-04 11:28:49 +08:00
|
|
|
SELECT COUNT(*) FROM user_visits v WHERE v.user_id = u.user_id
|
2013-04-05 14:43:48 +08:00
|
|
|
)
|
|
|
|
WHERE days_visited <>
|
|
|
|
(
|
2013-10-04 11:28:49 +08:00
|
|
|
SELECT COUNT(*) FROM user_visits v WHERE v.user_id = u.user_id
|
2013-04-05 14:43:48 +08:00
|
|
|
)
|
|
|
|
SQL
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
2013-05-24 10:48:32 +08:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_visits
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer not null
|
|
|
|
# visited_at :date not null
|
2014-02-07 08:07:36 +08:00
|
|
|
# posts_read :integer default(0)
|
2013-05-24 10:48:32 +08:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_user_visits_on_user_id_and_visited_at (user_id,visited_at) UNIQUE
|
|
|
|
#
|