Loading src/Entity/File.php +1 −0 Original line number Diff line number Diff line Loading @@ -10,6 +10,7 @@ use Symfony\Component\Uid\Uuid; class File { #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'uuid', unique: true)] private ?Uuid $id = null; Loading src/Entity/Gallery.php +3 −2 Original line number Diff line number Diff line Loading @@ -4,14 +4,15 @@ namespace App\Entity; use App\Repository\GalleryRepository; use Doctrine\ORM\Mapping as ORM; use Symfony\Component\Uid\Uuid; #[ORM\Entity(repositoryClass: GalleryRepository::class)] class Gallery { #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(type: 'uuid', unique: true)] private ?Uuid $id = null; #[ORM\ManyToOne(inversedBy: 'galleries')] #[ORM\JoinColumn(nullable: false)] Loading src/Entity/Kitchen.php +1 −0 Original line number Diff line number Diff line Loading @@ -10,6 +10,7 @@ use Symfony\Component\Uid\Uuid; class Kitchen { #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'uuid', unique: true)] private ?Uuid $id = null; Loading src/Entity/News.php +1 −0 Original line number Diff line number Diff line Loading @@ -13,6 +13,7 @@ use Symfony\Component\Uid\Uuid; class News { #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'uuid', unique: true)] private ?Uuid $id = null; Loading src/Entity/NewsCategory.php +1 −0 Original line number Diff line number Diff line Loading @@ -11,6 +11,7 @@ use Symfony\Component\Uid\Uuid; class NewsCategory { #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'uuid', unique: true)] private ?Uuid $id = null; Loading Loading
src/Entity/File.php +1 −0 Original line number Diff line number Diff line Loading @@ -10,6 +10,7 @@ use Symfony\Component\Uid\Uuid; class File { #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'uuid', unique: true)] private ?Uuid $id = null; Loading
src/Entity/Gallery.php +3 −2 Original line number Diff line number Diff line Loading @@ -4,14 +4,15 @@ namespace App\Entity; use App\Repository\GalleryRepository; use Doctrine\ORM\Mapping as ORM; use Symfony\Component\Uid\Uuid; #[ORM\Entity(repositoryClass: GalleryRepository::class)] class Gallery { #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column(type: 'uuid', unique: true)] private ?Uuid $id = null; #[ORM\ManyToOne(inversedBy: 'galleries')] #[ORM\JoinColumn(nullable: false)] Loading
src/Entity/Kitchen.php +1 −0 Original line number Diff line number Diff line Loading @@ -10,6 +10,7 @@ use Symfony\Component\Uid\Uuid; class Kitchen { #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'uuid', unique: true)] private ?Uuid $id = null; Loading
src/Entity/News.php +1 −0 Original line number Diff line number Diff line Loading @@ -13,6 +13,7 @@ use Symfony\Component\Uid\Uuid; class News { #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'uuid', unique: true)] private ?Uuid $id = null; Loading
src/Entity/NewsCategory.php +1 −0 Original line number Diff line number Diff line Loading @@ -11,6 +11,7 @@ use Symfony\Component\Uid\Uuid; class NewsCategory { #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'uuid', unique: true)] private ?Uuid $id = null; Loading