Revert "Better help for sqlite-utils create-table"

This reverts commit b3d11f5225.
This commit is contained in:
Simon Willison 2021-05-28 22:00:45 -07:00
commit 50a4fb722d
2 changed files with 1 additions and 11 deletions

0
docs/dogs.db Normal file
View file

View file

@ -922,17 +922,7 @@ def upsert(
def create_table(
path, table, columns, pk, not_null, default, fk, ignore, replace, load_extension
):
"""
Add a table with the specified columns. Columns should be specified using
name, type pairs, for example:
\b
sqlite-utils create-table my.db people \\
id integer \\
name text \\
height float \\
photo blob --pk id
"""
"Add a table with the specified columns"
db = sqlite_utils.Database(path)
_load_extensions(db, load_extension)
if len(columns) % 2 == 1: