Displaying 1 result from an estimated 1 matches for "fooproposal".
2005 Dec 16
0
relationship help (not a personal problem)
...y all. New to OO and Rails and trying to get a grip on both.
In particular at the moment I''m having trouble figuring out the
following relationship.
Say I have table/class Foo.
Users get to decide to create Foo (or update or delete Foo) based on a
user first proposing a change (class FooProposal), then users voting on
that change (class FooProposalBallot).
I was thinking something like ...
class Foo < ActiveRecord::Base
has_many :foo_proposals # Foo can be changed any # of times
belongs_to :user # who proposed to create Foo in the first place
end
class FooProposal < ActiveRec...