I think that the fact the default one is big means it will encourage most people to think of good/better/big ways to use it. (I'm refering to new web-developers)
If we ever change it there should be diferent set of pre-define providers and have one as default.
Or just don't define one at all and make it as simple as one class you define in your model, and make it as open as possible.
On 4/23/06, Steve Bergman <[EMAIL PROTECTED]> wrote:
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
-~----------~----~----~----~------~----~------~--~---

