Hello,
A while ago I submitted a bug for the doctrine plugin included in
symfony, since it is doctrine related and haven't got an answer there,
Im asking here.
This is my model:
Country:
columns:
id: { type: string(2), notnull: true, primary:true }
name: { type: string(250), notnull: true }
The data dumped via doctrine-dump-data look as:
Country:
Country_CA:
name: Canada
Country_MD:
name: 'Moldova Republic of'
Country_MG:
name: Madagascar
doctrine-load-data says:
SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry for key 1
doctrine only understands the data as follows:
Country:
canada:
id: ca
name: Canada
masms:
id: mo
name: 'Moldova Republic of'
ssggs:
id: ma
name: Madagascar
But I really need to load data dumped with dump-data.
Thanks!!
Pablo