]> Raphaƫl G. Git Repositories - airbundle/blobdiff - Resources/config/doctrine/Snippet.orm.yml
Add snippet hat field
[airbundle] / Resources / config / doctrine / Snippet.orm.yml
index a6e91652009ee5e207f0e6b4c0a607dc6307c6c7..19db3499881f03d2f842498f65757a590ded9b1e 100644 (file)
@@ -12,9 +12,42 @@ Rapsys\AirBundle\Entity\Snippet:
     fields:
         locale:
             type: string
-            length: 2
+            length: 5
         description:
             type: text
+            nullable: true
+        class:
+            type: text
+            nullable: true
+        short:
+            type: text
+            nullable: true
+        rate:
+            type: integer
+            nullable: true
+            options:
+                unsigned: true
+        hat:
+            type: boolean
+            nullable: true
+            options:
+                default: true
+        contact:
+            type: string
+            length: 254
+            nullable: true
+        donate:
+            type: string
+            length: 254
+            nullable: true
+        link:
+            type: string
+            length: 254
+            nullable: true
+        profile:
+            type: string
+            length: 254
+            nullable: true
         created:
             type: datetime
         updated:
@@ -33,3 +66,5 @@ Rapsys\AirBundle\Entity\Snippet:
     uniqueConstraints:
         locale_location_user:
             columns: [ locale, location_id, user_id ]
+    lifecycleCallbacks:
+        preUpdate: ['preUpdate']