Hi,

This error appears when the type a foreign key (in your case
solveet_action.investigation_id) is not _completely equivalent_ to the
type of the column it is pointing to (in your case
solveet_investigation.id).

As far as I know, the ID columns created by Doctrine are integer(11)
fields by default*. The column investigation_id in your schema is
integer(4) though, which leads to a type mismatch and the above given
error.

* I think there is some way to specify the default type for all
auto-generated id columns manually, but I don't know how - you have to
read that up in the Doctrine manual.


Bernhard

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to