I played a lot with Doctrine 1.2. Creating and deleting records are no problem anymore ;). But sometimes i have empty records in my database. Every field is set to NULL. I have the feeling it has something to do with relations. How can i prevent Doctrine of creating such empty entries.
Share
In your schema use the tag notnull: true to force non-empty fields
and use primary: true for id’s
i.e.:
I this does not help you, please put further information