Skip to content

Commit 335b9e8

Browse files
committed
fixed typos in the example schema
1 parent 3f5dbb9 commit 335b9e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/piccolo/getting_started/example_schema.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ This is the schema used by the example queries throughout the docs.
1212
1313
1414
class Manager(Table):
15-
name = Varchar(max_length=100)
15+
name = Varchar(length=100)
1616
1717
1818
class Band(Table):
19-
name = Varchar(max_length=100)
20-
manager = Varchar(max_length=100)
19+
name = Varchar(length=100)
20+
manager = Varchar(length=100)
2121
2222
To understand more about defining your own schemas, see :ref:`DefiningSchema`.

0 commit comments

Comments
 (0)