I am updating an old project that uses Propel 1.6
I added the required table to the schema.xml file and was about to generate it when I realized that I did not have propel_generate.
So, I set propel / propel_generator through the pear.
Now that I have generated my om, all the created TableMap files have lowercase column names, where they were uppercase:
Before:
$this->addColumn('FIRSTNAME', 'Firstname', 'VARCHAR', true, 255, null); $this->addColumn('SURNAME', 'Surname', 'VARCHAR', true, 255, null);
Now:
$this->addColumn('FIRSTNAME', 'Firstname', 'VARCHAR', true, 255, null); $this->addColumn('SURNAME', 'Surname', 'VARCHAR', true, 255, null);
Does anyone know what I need to change to generate uppercase names?
Bjorn source share