当我从现有的 Postgres 数据库中生成带有理论的实体时, 创建的文件为表单 :
- class Public.blog
- class Public.post
- etc
I. e. 我的数据库“ schema” 名称被包含在类名和文件名中。 这又使类名因“ ” 而被定为非法 。
How can I specify that I do not want the database schema name included in my class names?
还是我走错路了?
Extra info - The command is fine. My files are created correctly, however the class names are still "Public.blog" - Symfony2 manages to generate the same files without the Public schema/namespace. So it is possible! However, finding the part of the code that makes this happen is proving difficult!