I've got a table with the following field defined:
Field('archived', 'boolean',default=False, required=True),and yet, I'm getting the following error on insert: <type 'exceptions.SyntaxError'> Table: missing required field: archived How could this be? The table has a default specified?

