Add the game mvc
[cs356-p2-videostore.git] / app / models / game.rb
1 class Game < ActiveRecord::Base
2   has_one :rentable
3
4   validates_presence_of :title
5   validates_presence_of :genre
6   validates_presence_of :platform
7 end