Re: [symfony-users] How would you reverse the "notnull:true" in a schema of a plugin?

2010-04-01 Thread Tom Haskins-Vaughan
Why don't you just store the email in the username field? On Thu, Apr 1, 2010 at 9:07 AM, Javier Garcia wrote: > Hi, > > sfGuardUser model of sfDoctrineGuardPlugin is defined this way: > > sfGuardUser: >  actAs: [Timestampable] >  columns: >    id: >      type: integer(4) >      primary: true >  

[symfony-users] How would you reverse the "notnull:true" in a schema of a plugin?

2010-04-01 Thread Javier Garcia
Hi, sfGuardUser model of sfDoctrineGuardPlugin is defined this way: sfGuardUser: actAs: [Timestampable] columns: id: type: integer(4) primary: true autoincrement: true username: type: string(128) notnull: true unique: true As you can see 'username