mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 01:14:31 +02:00
Fix incorrect create-table cli description (#254)
The description for `create-table` was duplicated from `create-index`.
This commit is contained in:
parent
a95954c481
commit
e7b2626291
1 changed files with 1 additions and 1 deletions
|
|
@ -905,7 +905,7 @@ def upsert(
|
|||
def create_table(
|
||||
path, table, columns, pk, not_null, default, fk, ignore, replace, load_extension
|
||||
):
|
||||
"Add an index to the specified table covering the specified columns"
|
||||
"Add a table with the specified columns"
|
||||
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