From e7ecb0ffdfcb15a879e0da202a00966623f1e79c Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 23 Nov 2025 21:17:10 -0800 Subject: [PATCH] Removed note about strict and REAL --- docs/python-api.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/python-api.rst b/docs/python-api.rst index a69cf16..f9371d5 100644 --- a/docs/python-api.rst +++ b/docs/python-api.rst @@ -1298,9 +1298,6 @@ If you pass a Python type, it will be mapped to SQLite types as shown here:: np.float32: "REAL" np.float64: "REAL" -.. note:: - In sqlite-utils 4.0 the default floating point column type was changed from ``FLOAT`` to ``REAL``, which is the correct SQLite type for floating point columns. You can still explicitly specify ``"FLOAT"`` or ``"float"`` as a column type for backwards compatibility, but auto-detected floating point columns will now use ``REAL``. See issue :issue:`645`. - You can also add a column that is a foreign key reference to another table using the ``fk`` parameter: .. code-block:: python