From: Raphaƫl Gertz <git@rapsys.eu>
Date: Tue, 4 Oct 2022 05:55:03 +0000 (+0200)
Subject: Add Country doctrine orm config
X-Git-Tag: 0.3.0~228
X-Git-Url: https://git.rapsys.eu/.gitweb.cgi/airbundle/commitdiff_plain/f2e3b386c4febce1c98b98aef789da3df8172f93?ds=inline;hp=7f665ffdcfb6769c70f08fa036becf24d3c94186

Add Country doctrine orm config
---

diff --git a/Resources/config/doctrine/Country.orm.yml b/Resources/config/doctrine/Country.orm.yml
new file mode 100644
index 0000000..e0a5527
--- /dev/null
+++ b/Resources/config/doctrine/Country.orm.yml
@@ -0,0 +1,39 @@
+Rapsys\AirBundle\Entity\Country:
+    type: entity
+    #repositoryClass: Rapsys\AirBundle\Repository\CountryRepository
+    table: countries
+    id:
+        id:
+            type: integer
+            generator:
+                strategy: AUTO
+            options:
+                unsigned: true
+    fields:
+        code:
+            type: string
+            length: 2
+            nullable: false
+        alpha:
+            type: string
+            length: 3
+            nullable: false
+        title:
+            type: string
+            length: 64
+            nullable: false
+        created:
+            type: datetime
+        updated:
+            type: datetime
+    oneToMany:
+        users:
+            targetEntity: Rapsys\AirBundle\Entity\User
+            mappedBy: country
+    uniqueConstraints:
+        code:
+            columns: [ code ]
+        alpha:
+            columns: [ alpha ]
+    lifecycleCallbacks:
+        preUpdate: ['preUpdate']