From cdeb7d7da77c6d1cd3554d08cb5659243cb3d55b Mon Sep 17 00:00:00 2001 From: Rob Wells Date: Tue, 13 Apr 2021 21:01:52 +0100 Subject: [PATCH] Fix incorrect create-table cli description The description for `create-table` was duplicated from `create-index`. --- sqlite_utils/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite_utils/cli.py b/sqlite_utils/cli.py index e42be83..9d899d5 100644 --- a/sqlite_utils/cli.py +++ b/sqlite_utils/cli.py @@ -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: