test/fixtures/room.rb in composite_primary_keys-14.0.6 vs test/fixtures/room.rb in composite_primary_keys-14.0.7
- old
+ new
@@ -2,10 +2,13 @@
self.primary_keys = :dorm_id, :room_id
belongs_to :dorm
has_many :room_assignments, :foreign_key => [:dorm_id, :room_id]
has_many :room_attribute_assignments, :foreign_key => [:dorm_id, :room_id]
has_many :room_attributes, :through => :room_attribute_assignments
-
+
+ has_one :staff_room, :foreign_key => [:dorm_id, :room_id], :inverse_of => :room
+ delegate :staff_room_key, :to => :staff_room, :allow_nil => true
+
def find_custom_room_attributes
room_attributes.where("room_attributes.name != ?", "type")
end
end