class Author(Model):
id = fields.IntField(pk=True)
name = fields.CharField(max_length=100)
class Book(Model):
id = fields.IntField(pk=True)
title = fields.CharField(max_length=100)
author = fields.ForeignKeyField("models.Author", related_name="books")