I'm investigating an issue related to :
- Doctrine 2.* on Symfony2 2.3 LTS with a MySQL server (5.1.73 and 5.7.9)
Objects created in the database (Schema and entities) don't reflect the same casing as define in the Entities and parameters file.
i.e: database_name: TestDB
will create 'testdb' instead of 'TestDB' i.e:\....Bundle\Entity\Test:
type: entity
table: Test
will create an entity (table) 'test' instead of 'Test', this both while using YML or Annotations. Thereby , causing PDO Exception of table not found.
Is there a way to making sure that database object naming respect the ones defined into the project?