public
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/insoshi/insoshi.git
insoshi / app / models / page_view.rb
100644 19 lines (17 sloc) 0.423 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# == Schema Information
# Schema version: 28
#
# Table name: page_views
#
# id :integer(11) not null, primary key
# request_url :string(200)
# ip_address :string(16)
# referer :string(200)
# user_agent :string(200)
# created_at :datetime
# updated_at :datetime
# person_id :integer(11)
#
 
class PageView < ActiveRecord::Base
  belongs_to :person
end