Uuid¶
New in version 12.3.
The main purpose of the TCA type uuid
is to simplify the TCA
configuration when working with fields containing a UUID.
Note
When this type of TCA is used, the corresponding database columns are automatically added.
Example¶
An example configuration looks like the following:
'my_identifier' => [
'label' => 'My record identifier',
'config' => [
'type' => 'uuid',
'version' => 6,
],
],