db045dbbf6
1a474cc8e4
6f20efdaf7
df95128e94
f0b2b637ea
1
2
3 4
5
6 7
8
class Subscriber < ActiveRecord::Base self.primary_key = 'nick' has_many :subscriptions has_many :books, :through => :subscriptions end class SpecialSubscriber < Subscriber end