From 63a825c7e97c1a9d5dadfbc7e5217aa70a986c47 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Fri, 10 Nov 2023 13:26:22 +0100 Subject: [PATCH] Remove language relation Set nullable slug Add locale field Add preUpdate callback --- .../doctrine/ArticleTranslation.orm.yml | 30 +++++++++++-------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/Resources/config/doctrine/ArticleTranslation.orm.yml b/Resources/config/doctrine/ArticleTranslation.orm.yml index 5c581bf..87ffe4a 100644 --- a/Resources/config/doctrine/ArticleTranslation.orm.yml +++ b/Resources/config/doctrine/ArticleTranslation.orm.yml @@ -7,21 +7,24 @@ Rapsys\BlogBundle\Entity\ArticleTranslation: type: integer options: unsigned: true - language_id: - type: smallint - options: - unsigned: true + locale: + type: string + length: 5 fields: + body: + type: text + nullable: true + description: + type: text + nullable: true slug: type: string length: 128 + nullable: true title: type: string length: 128 - description: - type: text - body: - type: text + nullable: true created: type: datetime updated: @@ -30,9 +33,10 @@ Rapsys\BlogBundle\Entity\ArticleTranslation: article: targetEntity: Rapsys\BlogBundle\Entity\Article inversedBy: article_translations - language: - targetEntity: Rapsys\BlogBundle\Entity\Language - inversedBy: article_translations + joinColumn: + nullable: false uniqueConstraints: - slug_language: - columns: [ slug, language_id ] + locale_slug: + columns: [ locale, slug ] + lifecycleCallbacks: + preUpdate: ['preUpdate'] -- 2.41.0