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
Search Repo:
insoshi / app / models / communication.rb
100644 24 lines (23 sloc) 0.777 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# == Schema Information
# Schema version: 28
#
# Table name: communications
#
# id :integer(11) not null, primary key
# subject :string(255)
# content :text
# parent_id :integer(11)
# sender_id :integer(11)
# recipient_id :integer(11)
# sender_deleted_at :datetime
# sender_read_at :datetime
# recipient_deleted_at :datetime
# recipient_read_at :datetime
# replied_at :datetime
# type :string(255)
# created_at :datetime
# updated_at :datetime
# conversation_id :integer(11)
#
 
class Communication < ActiveRecord::Base
end