2014-11-30 05:06:05 -08:00
|
|
|
class Relationship < ActiveRecord::Base
|
2014-11-30 05:43:35 -08:00
|
|
|
belongs_to :source, class_name: 'User'
|
|
|
|
belongs_to :target, class_name: 'User'
|
|
|
|
validates :source_id, presence: true
|
|
|
|
validates :target_id, presence: true
|
2014-11-30 05:06:05 -08:00
|
|
|
end
|