Add validation to GameGenre and GamePlatform
[cs356-p2-videostore.git] / app / models / game_platform.rb
1 class GamePlatform < ActiveRecord::Base
2   belongs_to :game
3
4   validates_presence_of :name
5 end