2011-05-22 14:35:46 +00:00
|
|
|
class Reminder < ActiveRecord::Base
|
2012-11-15 17:34:19 +00:00
|
|
|
include ActiveModel::ForbiddenAttributesProtection
|
2014-04-01 08:15:29 +00:00
|
|
|
belongs_to :from_user, class_name: 'User'
|
2011-09-15 21:41:26 +00:00
|
|
|
belongs_to :thing
|
2014-04-01 08:15:29 +00:00
|
|
|
belongs_to :to_user, class_name: 'User'
|
|
|
|
validates :from_user, presence: true
|
|
|
|
validates :thing, presence: true
|
|
|
|
validates :to_user, presence: true
|
2011-05-22 14:35:46 +00:00
|
|
|
end
|