I changed a postgres table to add a field
Field('dq',boolean', default=False, readable=False, writable=False),I may have made another postgres table change at the same time. Later, I set the values of mytable.dq to False throughout the db. Subsequently, when querying the value of dq for a row in a query, it shows as a Set: <gluon.dal.Set object at 0x06F6470> What is that? How come it isn't just False? I tried migrate_enabled=True, then fake_migrate_all=True during the db=DAL(...) incantation, but that didn't fix anything. --

