mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
6 lines
189 B
Ruby
6 lines
189 B
Ruby
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
|