Skip to content

Commit

Permalink
will, not may - refs #468
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Aug 27, 2022
1 parent 2f6a64f commit cdb6e1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/python-api.rst
Expand Up @@ -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
Expand Down

0 comments on commit cdb6e1b

Please sign in to comment.