Jeff Watkins wrote:

>
> Frankly, I don't actually care what fields go in the User table, 
> because I don't use the default TG version in any of my projects. If 
> the feeling is that the tables have too much information, please feel 
> free to either change them or submit a ticket/patch with changes.

I take it, then, that no one would be too upset if I submit this patch 
to the trac?

--- soprovider.py.orig  2006-04-22 16:49:22.000000000 -0500
+++ soprovider.py       2006-04-22 16:50:42.000000000 -0500
@@ -277,8 +277,8 @@
         table="tg_user"

     userId= UnicodeCol( length=16, alternateID=True )
-    emailAddress= UnicodeCol( length=255, alternateID=True )
-    displayName= UnicodeCol( length=255 )
+    emailAddress= UnicodeCol( length=255, default=None )
+    displayName= UnicodeCol( length=255, default=None)
     password= UnicodeCol( length=40 )
     created= DateTimeCol( default=datetime.now )


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears
-~----------~----~----~----~------~----~------~--~---

Reply via email to