mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 09:24:31 +02:00
Better help for sqlite-utils create-table
This commit is contained in:
parent
51d01da30d
commit
668e8c9fd1
2 changed files with 11 additions and 1 deletions
|
|
@ -922,7 +922,17 @@ def upsert(
|
|||
def create_table(
|
||||
path, table, columns, pk, not_null, default, fk, ignore, replace, load_extension
|
||||
):
|
||||
"Add a table with the specified columns"
|
||||
"""
|
||||
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
|
||||
"""
|
||||
db = sqlite_utils.Database(path)
|
||||
_load_extensions(db, load_extension)
|
||||
if len(columns) % 2 == 1:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue