I'm having trouble in defining fixtures for self referencing relations in Doctrine 1.2, suppose I use the code from the manual, how to write fixtures for that?
I tried with this fixture file
User:
JohnDoe:
username: "john doe"
MarkSmith:
username: "mark smith"
Friends: [ JohnDoe ]
but when I run doctrine load task I obtain this error message:
Catchable fatal error: Argument 2 passed to Doctrine_Record::setFriends() must be an instance of Doctrine_Access, none given
I would try by passing users in FriendReference fixture, but I don't know how to do that, because FriendReference has not relations explicitly declared so I can not do something like this
FriendReference:
First:
???: [ JohnDoe, MarkSmith ]
or
FriendReference:
First:
User1: JohnDoe
User2: MarkSmith
Update
Here is the example schema taken from the manual
---
# schema.yml
# ...
User:
# ...
relations:
# ...
Friends:
class: User
local: user1
foreign: user2
refClass: FriendReference
equal: true
FriendReference:
columns:
user1:
type: integer
primary: true
user2:
type: integer
primary: true
Userswill load toQuestion? Update fixture sample as well. :) – J0HN Aug 26 '11 at 13:38Friendsdeclaration to firstUser? – J0HN Aug 26 '11 at 14:01