We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5c32a4 commit 9580162Copy full SHA for 9580162
docs/src/piccolo/getting_started/example_schema.rst
@@ -17,7 +17,7 @@ This is the schema used by the example queries throughout the docs.
17
18
class Band(Table):
19
name = Varchar(length=100)
20
- manager = Varchar(length=100)
+ manager = ForeignKey(references=Manager)
21
popularity = Integer()
22
23
To understand more about defining your own schemas, see :ref:`DefiningSchema`.
0 commit comments