mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-26 19:04:32 +02:00
will, not may - refs #468
This commit is contained in:
parent
2f6a64f61d
commit
cdb6e1b659
1 changed files with 1 additions and 1 deletions
|
|
@ -554,7 +554,7 @@ To do nothing if the table already exists, add ``if_not_exists=True``:
|
|||
"name": str,
|
||||
}, pk="id", if_not_exists=True)
|
||||
|
||||
You can also pass ``transform=True`` to have any existing tables :ref:`transformed <python_api_transform>` to match your new table specification. This is a **dangerous operation** as it may drop columns that are no longer listed in your call to ``.create()``, so be careful when running this.
|
||||
You can also pass ``transform=True`` to have any existing tables :ref:`transformed <python_api_transform>` to match your new table specification. This is a **dangerous operation** as it will drop columns that are no longer listed in your call to ``.create()``, so be careful when running this.
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue