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 / feed.rb
100644 15 lines (13 sloc) 0.272 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# == Schema Information
# Schema version: 28
#
# Table name: feeds
#
# id :integer(11) not null, primary key
# person_id :integer(11)
# activity_id :integer(11)
#
 
class Feed < ActiveRecord::Base
  belongs_to :activity
  belongs_to :person
end