Hello,
I ran into small problem. When I define model:
db.define_table('child',
Field('parent', 'reference parent', notnull=False),
)The problem is that validation serves me an error eventhough no validators are attachted to parent and I explicitly provided notnull=False. It shouldnt check in database unless I express so in the validator this way it cannot realize the scenario to have parent or null ;] Regards, Marek

