Schema and table name in Postgres are case sensitive. How can I specify correct schema in docblock annotations so they are not converted to lowercase?

Neither of these works:

@Table(name="MySchema.MyTable") // gets converted to lowercase
@Table(name="`MySchema`.`MyTable`") // invalid table
@Table(name="`MySchema.MyTable`") // also invalid table

Doctrine ORM is 2.0.4

Theres no word about schema in documentation either, only found that schema param/keyword is no longer supported.

link|improve this question

76% accept rate
4  
possible duplicate of Case problem with doctrine2, symfony2 and postgresql entities – Ross May 12 '11 at 11:51
@Ross - Solution in mentioned thread works, thanks. – Peter May 12 '11 at 13:05
1  
@Ross, you might want to put this as an answer. – ign May 17 '11 at 13:55
feedback

1 Answer

up vote 0 down vote accepted

As mentioned in this thread, Postgres is case-sensitive and each word must be escaped:

@Table(name="""MySchema"".""MyTable""")
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.