blob: 269da472cf8cc5f9c86ed0323060e35dd316111f (
plain) (
blame)
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
|