Add searching to the games controller
[cs356-p2-videostore.git] / app / models / rentable.rb
1 class Rentable < ActiveRecord::Base
2   has_many :coitem
3
4   validates_presence_of :title
5   # don't validate newrelease, false is ok
6 end