> This does not act as I expect: > > foo = meta.BoooleanField(default='FALSE') > > I would expect the produced SQL(for Postgres) to include a DEFAULT > 'FALSE' clause.
I'd guess you need foo = meta.BooleanField(default = False). Since the model is really a Python binding, you assign Python-flavored values. Regards, Manuzhai
