projects
/
cs356-p2-videostore.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a6bc1ade6d518950999332e5965571bb492449d1
[cs356-p2-videostore.git]
/
app
/
models
/
coitem.rb
1
class Coitem < ActiveRecord::Base
2
belongs_to :customer
3
belongs_to :rentable
4
5
validates_presence_of :customer_id
6
validates_presence_of :rentable_id
7
8
validates_uniqueness_of :rentable_id
9
10
validates_associated :customer
11
validates_associated :rentable
12
end