X-Git-Url: https://git.rapsys.eu/blogbundle/blobdiff_plain/fa8e4de5602433d52b2bb19c1a196c07da3b0cb8..202a49459b57616a1632469daddff3f617263cbe:/Resources/config/doctrine/KeywordTranslation.orm.yml?ds=sidebyside diff --git a/Resources/config/doctrine/KeywordTranslation.orm.yml b/Resources/config/doctrine/KeywordTranslation.orm.yml deleted file mode 100644 index 18cf06e..0000000 --- a/Resources/config/doctrine/KeywordTranslation.orm.yml +++ /dev/null @@ -1,39 +0,0 @@ -Rapsys\BlogBundle\Entity\KeywordTranslation: - type: entity - repositoryClass: Rapsys\BlogBundle\Repository\KeywordTranslationRepository - table: keywords_translations - id: - keyword_id: - type: integer - options: - unsigned: true - locale: - type: string - length: 5 - fields: - description: - type: text - nullable: true - slug: - type: string - length: 128 - nullable: true - title: - type: string - length: 128 - nullable: true - created: - type: datetime - updated: - type: datetime - manyToOne: - keyword: - targetEntity: Rapsys\BlogBundle\Entity\Keyword - inversedBy: keyword_translations - joinColumn: - nullable: false - uniqueConstraints: - locale_slug: - columns: [ locale, slug ] - lifecycleCallbacks: - preUpdate: ['preUpdate']