@@ -115,7 +115,7 @@ UUID objects created with the ``Uuid`` class can use the following methods
115
115
Storing UUIDs in Databases
116
116
~~~~~~~~~~~~~~~~~~~~~~~~~~
117
117
118
- You can store UUID values as any other regular string/binary values in the database.
118
+ You can store UUID values as any other regular string values in the database.
119
119
However, if you :doc: `use Doctrine </doctrine >`, it's more convenient to use the
120
120
special Doctrine types which convert to/from UUID objects automatically::
121
121
@@ -134,14 +134,13 @@ special Doctrine types which convert to/from UUID objects automatically::
134
134
*/
135
135
private $someProperty;
136
136
137
- /**
138
- * @ORM\Column(type="uuid_binary")
139
- */
140
- private $anotherProperty;
141
-
142
137
// ...
143
138
}
144
139
140
+ .. versionadded :: 5.2
141
+
142
+ The UuidBinary type has been removed in Symfony 5.2.
143
+
145
144
There's also a Doctrine generator to help autogenerate UUID values for the
146
145
entity primary keys::
147
146
@@ -260,7 +259,7 @@ ULID objects created with the ``Ulid`` class can use the following methods::
260
259
Storing ULIDs in Databases
261
260
~~~~~~~~~~~~~~~~~~~~~~~~~~
262
261
263
- You can store ULID values as any other regular string/binary values in the database.
262
+ You can store ULID values as any other regular string values in the database.
264
263
However, if you :doc: `use Doctrine </doctrine >`, it's more convenient to use the
265
264
special Doctrine types which convert to/from ULID objects automatically::
266
265
@@ -279,14 +278,13 @@ special Doctrine types which convert to/from ULID objects automatically::
279
278
*/
280
279
private $someProperty;
281
280
282
- /**
283
- * @ORM\Column(type="ulid_binary")
284
- */
285
- private $anotherProperty;
286
-
287
281
// ...
288
282
}
289
283
284
+ .. versionadded :: 5.2
285
+
286
+ The UlidBinary type has been removed in Symfony 5.2.
287
+
290
288
There's also a Doctrine generator to help autogenerate ULID values for the
291
289
entity primary keys::
292
290
0 commit comments