Displaying 1 result from an estimated 1 matches for "creator_job_id".
2005 Mar 01
0
has_and_belongs_to_many problem
...n the Issue object. Here''s how they look:
class Issue < ActiveRecord::Base
has_and_belongs_to_many :creators
has_and_belongs_to_many :writers, :class_name=>''Creator'',
:association_foreign_key=>''creator_id'', :conditions=>''creator_job_id=1''
has_and_belongs_to_many :pencillers, :class_name=>''Creator'',
:association_foreign_key=>''creator_id'', :conditions=>''creator_job_id=2''
has_and_belongs_to_many :inkers, :class_name=>''Creator'',...