We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f5dbb9 commit 335b9e8Copy full SHA for 335b9e8
docs/src/piccolo/getting_started/example_schema.rst
@@ -12,11 +12,11 @@ This is the schema used by the example queries throughout the docs.
12
13
14
class Manager(Table):
15
- name = Varchar(max_length=100)
+ name = Varchar(length=100)
16
17
18
class Band(Table):
19
20
- manager = Varchar(max_length=100)
+ manager = Varchar(length=100)
21
22
To understand more about defining your own schemas, see :ref:`DefiningSchema`.
0 commit comments