If I have a database (class)

4       class Person(SQLObject):
5
6           firstName = StringCol(length=100)
7           middleInitial = StringCol(length=1, default=None)
8           lastName = StringCol(length=100)
9           lastContact = DateTimeCol(default=datetime.now)

with a few thousand entries, and I wish to add a new field to the
table
            age = Integer()  #(or whatever)

how do I proceed?

thanx
Karl


--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to