From 95b0f5c328f890c7a2b40de7765bceead9837a30 Mon Sep 17 00:00:00 2001 From: Alexander Schranz Date: Thu, 26 Sep 2024 16:19:34 +0200 Subject: [PATCH] Add missing generated option --- docs/en/reference/basic-mapping.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/en/reference/basic-mapping.rst b/docs/en/reference/basic-mapping.rst index 32f8626806..0070c27176 100644 --- a/docs/en/reference/basic-mapping.rst +++ b/docs/en/reference/basic-mapping.rst @@ -239,6 +239,7 @@ Here is a complete list of ``Column``s attributes (all optional): - ``nullable`` (default: ``false``): Whether the column is nullable. - ``insertable`` (default: ``true``): Whether the column should be inserted. - ``updatable`` (default: ``true``): Whether the column should be updated. +- ``generated`` (default: ``null``): Whether the generated strategy should be ``'NEVER'``, ``'INSERT'`` and ``ALWAYS``. - ``enumType`` (requires PHP 8.1 and ``doctrine/orm`` 2.11): The PHP enum class name to convert the database value into. - ``precision`` (default: 0): The precision for a decimal (exact numeric) column (applies only for decimal column),