Hi, I would like to link a table to its own model like this:
db.define_table('person', Field('name'), Field('child', db.person)) I understand that I should first initiate the table and then link it to itself. But how to do that? Thanks in advance for help!