I have a mysql 5.045 database on linux with
field name like ModelID ,TypeID, MakeID all of them link to car types in other tables.
I can generator the crud with
symfony propel-init-admin admx vehiclemodel StaticVehicleModel?
which yields a working (but buggy URL) at
http://myproject.com/admx_dev.php/vehiclemodel
when I click on the field headers (Modelname) the following happens :
[PropelException?]
'modelname' could not be found in the field names of type 'fieldName'. These are: Array ( [ModelID] => 0 [ModelName?] => 1 [TypeID] => 2 [MakeID] => 3 )
What gives? I read that issues exist on some names for fields. What's the fix
Is their a recommended naming standard for mysql database field names on linux ?
regards, gisueppe.