Add the has_many_polymorphs purchaseable model
[cs356-p2-videostore.git] / app / models / purchase.rb
1 class Purchase < ActiveRecord::Base
2   belongs_to :customer
3   belongs_to :purchaseable, :polymorphic => true
4 end