Add the has_many_polymorphs plugin
[cs356-p2-videostore.git] / vendor / plugins / has_many_polymorphs / test / models / cat.rb
1 class Cat < ActiveRecord::Base
2   # STI base class
3   self.inheritance_column = 'cat_type'
4 end
5