Skip to content

Instantly share code, notes, and snippets.

@ktopping
Created January 25, 2012 20:50
Show Gist options
  • Save ktopping/1678640 to your computer and use it in GitHub Desktop.
Save ktopping/1678640 to your computer and use it in GitHub Desktop.
rb
class Event < ActiveRecord::Base
...
has_many :options, :class_name => "EventOption", ...
...
end
class EventOption < ActiveRecord::Base
...
belongs_to :event
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment