Fix incorrect create-table cli description (#254)

The description for `create-table` was duplicated from `create-index`.
This commit is contained in:
Rob Wells 2021-05-19 03:57:26 +01:00 committed by GitHub
commit e7b2626291
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: