From e7b2626291040b78b9a2dbc2982ba72691fb1a0f Mon Sep 17 00:00:00 2001 From: Rob Wells Date: Wed, 19 May 2021 03:57:26 +0100 Subject: [PATCH] Fix incorrect create-table cli description (#254) 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: