views:

23

answers:

1

Hi,

My tables are named in a plural form - Models / Entities, is there a way to make the generated classes named Model / Entity?

(Don't know if this is relevant, but I'm using Propel as the ORM)

Thanks.

+3  A: 
propel:
  users:
    _attributes:    { phpName: User}
    name:           varchar(255)
Coronatus