[symfony-users] Re: Camel Case

2010-06-09 Thread Davide Borsatto
With Propel (but I think with Doctrine too) tables/columns can have whatever name you want, you simply have to use the attribute phpName in the schema definition: propel: systemUsers: _attributes: { phpName: User } id: ~ userName: { type: varchar(255), required: false, phpName: user_

Re: [symfony-users] Re: Camel Case

2010-06-09 Thread Parijat Kalia
If your db was hand written by you and u are simply building the schema from it instead of handwriting it, I suppose it will handle it, give it a shot On Wed, Jun 9, 2010 at 6:49 AM, Davide Borsatto wrote: > With Propel (but I think with Doctrine too) tables/columns can have > whatever name you

[symfony-users] Re: camel case error in class generation by propel. BUG?

2010-05-24 Thread Tom Ptacnik
If you use schema.yml it will be just like you write it... sfDtPage: actAs: Timestampable: columns: . Page: actAs: Timestampable: columns: . First will create class sfDtPage, the second Page. On 23 kvÄ›, 18:36, Tofuwst will create a class sfDtPage, second Page.ar