diff --git a/docs/dogs.db b/docs/dogs.db new file mode 100644 index 0000000..e69de29 diff --git a/sqlite_utils/cli.py b/sqlite_utils/cli.py index 68bd986..52de64a 100644 --- a/sqlite_utils/cli.py +++ b/sqlite_utils/cli.py @@ -922,17 +922,7 @@ def upsert( def create_table( path, table, columns, pk, not_null, default, fk, ignore, replace, load_extension ): - """ - 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 - """ + "Add a table with the specified columns" db = sqlite_utils.Database(path) _load_extensions(db, load_extension) if len(columns) % 2 == 1: