[sqlalchemy] Assigning column defaults after definition?

2010-07-29 Thread Russell Warren
I've got a bunch of old sqlalchemy code using the declarative framework where the default field values could be assigned after the initial definition, as in this reduced example: ### from sqlalchemy import * from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.orm import

Re: [sqlalchemy] Assigning column defaults after definition?

2010-07-29 Thread Michael Bayer
On Jul 29, 2010, at 11:08 PM, Russell Warren wrote: I've got a bunch of old sqlalchemy code using the declarative framework where the default field values could be assigned after the initial definition, as in this reduced example: ### from sqlalchemy import * from