[Rails] model association question

2011-09-13 Thread Randy Regnier
I have a question about how best to model a pair of properties/attributes in Rails3. The generic models are: class Foo ActiveRecord::Base end class Bar ActiveRecord::Base end I want Foo to have two associations with Bar, along the lines of 'has_one' for each association, where I can work

Re: [Rails] model association question

2011-09-13 Thread Jesse
On 9/13/11 1:22 PM, Randy Regnier wrote: I have a question about how best to model a pair of properties/attributes in Rails3. The generic models are: class Foo ActiveRecord::Base end class Bar ActiveRecord::Base end I want Foo to have two associations with Bar, along the lines of 'has_one'

Re: [Rails] model association question

2011-09-13 Thread Randy Regnier
On 09/13/2011 03:34 PM, Jesse wrote: On 9/13/11 1:22 PM, Randy Regnier wrote: I have a question about how best to model a pair of properties/attributes in Rails3. The generic models are: class Foo ActiveRecord::Base end class Bar ActiveRecord::Base end I want Foo to have two associations

Re: [Rails] model association question

2011-09-13 Thread Colin Law
On 13 September 2011 22:17, Randy Regnier rbregn...@gmail.com wrote: On 09/13/2011 03:34 PM, Jesse wrote: On 9/13/11 1:22 PM, Randy Regnier wrote: I have a question about how best to model a pair of properties/attributes in Rails3. The generic models are: class Foo ActiveRecord::Base end

Re: [Rails] model association question

2011-09-13 Thread Randy Regnier
On 09/13/2011 04:21 PM, Colin Law wrote: On 13 September 2011 22:17, Randy Regnierrbregn...@gmail.com wrote: On 09/13/2011 03:34 PM, Jesse wrote: On 9/13/11 1:22 PM, Randy Regnier wrote: I have a question about how best to model a pair of properties/attributes in Rails3. The generic models

Re: [Rails] model association question

2011-09-13 Thread Jesse
On 9/13/11 5:17 PM, Randy Regnier wrote: On 09/13/2011 03:34 PM, Jesse wrote: On 9/13/11 1:22 PM, Randy Regnier wrote: I have a question about how best to model a pair of properties/attributes in Rails3. The generic models are: class Foo ActiveRecord::Base end class Bar ActiveRecord::Base

[Rails] Model Association Question

2009-06-02 Thread David
It seems like there may be a rails method for the following situation: model User has_many :appointments model Appointment has_one :instruction belongs_to :user model Instruction belongs_to :appointment I would like to do User.Appointments.Instruction and return an array with instruction