New in Symfony 5.2: Doctrine types for UUID and ULID
Contributed by
gennadigennadigennadi
in #37678.
In Symfony 5.1 we introduced a new Uid component to help you generate and work with different UID values, such as UUIDs and ULIDs. The next step is to improve its integration with other Symfony components.
That’s why in Symfony 5.2 we’ve added Doctrine types and generators for UUIDs
and ULIDs. You only have to install Doctrine in your Symfony application
and the new types will be available as uuid
and ulid
:
// src/Entity/Product.php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass="App\Repository\ProductRepository")
*/
class Product
{
/**
* @ORM\Column(type="uuid")
*/
private $someProperty;
/**
* @ORM\Column(type="ulid")
*/
private $anotherProperty;
// ...
}
When using those types, the value of the properties will be transformed from/to UUID/ULID objects automatically for you. You can also generate UUID/ULID values for your primary keys using the new generators:
// there are generators for UUID V1 and V6 too
use Symfony\Bridge\Doctrine\IdGenerator\UuidV4Generator;
/**
* @ORM\Entity(repositoryClass="App\Repository\ProductRepository")
*/
class Product
{
/**
* @ORM\Id
* @ORM\Column(type="uuid", unique=true)
* @ORM\GeneratedValue(strategy="CUSTOM")
* @ORM\CustomIdGenerator(class=UuidV4Generator::class)
*/
private $id;
// ...
}
use Symfony\Bridge\Doctrine\IdGenerator\UlidGenerator;
/**
* @ORM\Entity(repositoryClass="App\Repository\ProductRepository")
*/
class Product
{
/**
* @ORM\Id
* @ORM\Column(type="ulid", unique=true)
* @ORM\GeneratedValue(strategy="CUSTOM")
* @ORM\CustomIdGenerator(class=UlidGenerator::class)
*/
private $id;
// ...
}
As with any Open-Source project, contributing code or documentation is the most common way to help, but we also have a wide range of sponsoring opportunities.
New in Symfony 5.2: Doctrine types for UUID and ULID symfony.com/blog/new-in-symfony-5-2-doctrine-types-for-uuid-and-ulid
Tweet thisComments
I agree with Nicolas. Also the use statement and customIdGenerator show`s it should be ulid.
Comments are closed.
To ensure that comments stay relevant, they are closed for old posts.
Nicolas Philippe Certified said on Sep 24, 2020 at 09:27 #1
shouldn't the last example have `type="ulid"`?