@@ -5,7 +5,7 @@ Generated columns, sometimes also called virtual columns, are populated by
5
5
the database engine itself. They are a tool for performance optimization, to
6
6
avoid calculating a value on each query.
7
7
8
- You can define generated columns on entities and have doctrine map the values
8
+ You can define generated columns on entities and have Doctrine map the values
9
9
to your entity.
10
10
11
11
Declaring a generated column
@@ -43,13 +43,13 @@ definition.
43
43
* ``insertable ``, ``updatable ``: Setting these to false tells Doctrine to never
44
44
write this column - writing to a generated column would result in an error
45
45
from the database.
46
- * ``columnDefinition ``: The instructions how to generate the column can not be
46
+ * ``columnDefinition ``: The instructions on how to generate the column can not be
47
47
expressed with Doctrine mapping. ``columnDefinition `` specifies the full SQL
48
48
to create the column. To allow to use database specific features, this
49
49
attribute does not use DQL. Note that we use the database column names with
50
50
snake_case to reference the fields, and not the entity fields with camelCase.
51
51
The instructions in the column definition are applied literally, and thus not
52
- portable if you use any implementation specific features.
52
+ portable if you use any implementation- specific features.
53
53
Be aware that specifying a column definition makes the ``SchemaTool ``
54
54
completely ignore all other configuration for this column. See also
55
55
:ref: `#[Column] <attrref_column >`
0 commit comments