rails--rails/activerecord/test/models/essay.rb

6 lines
189 B
Ruby
Raw Normal View History

class Essay < ActiveRecord::Base
belongs_to :writer, :primary_key => :name, :polymorphic => true
belongs_to :category, :primary_key => :name
has_one :owner, :primary_key => :name
end