In my config/doctrine/schema.yml I have a definition something like this:
MyThing:
tableName: mythings
columns:
field1: string(40)
another_field: boolean
fooBar: boolean
Note that fooBar is in camelCase.
However, when I use the Doctrine admin generator, the generated templates appear to convert all the field names to lower case which leads to a Doctrine_Record_Exception when the template tries to pull in values such as $mything['foobar'] instead of $mything['fooBar'] , which obviously fails.
I guess that, somewhere in the chain, the DAG is converting the field names to lower case. Hopefully this is an easy problem to address by removing that case change!
PS. This other ticket [ http://trac.symfony-project.org/ticket/5411 ] might also be related to this one.
C