X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/af8990a8d34a918fa399d345ccf7e4c370d8e2e9..9766283440328e29ddc18b6ed9928eb4593d5c41:/Resources/config/doctrine/Application.orm.yml?ds=inline

diff --git a/Resources/config/doctrine/Application.orm.yml b/Resources/config/doctrine/Application.orm.yml
index aaf461f..38de0fe 100644
--- a/Resources/config/doctrine/Application.orm.yml
+++ b/Resources/config/doctrine/Application.orm.yml
@@ -10,18 +10,35 @@ Rapsys\AirBundle\Entity\Application:
             options:
                 unsigned: true
     fields:
+        score:
+            type: float
+            nullable: true
+        canceled:
+            type: datetime
+            nullable: true
         created:
             type: datetime
         updated:
             type: datetime
     manyToOne:
+        dance:
+            targetEntity: Rapsys\AirBundle\Entity\Dance
+            inversedBy: applications
         session:
             targetEntity: Rapsys\AirBundle\Entity\Session
             inversedBy: applications
         user:
             targetEntity: Rapsys\AirBundle\Entity\User
             inversedBy: applications
-    oneToMany:
-        votes:
-            targetEntity: Rapsys\AirBundle\Entity\Vote
-            mappedBy: application
+    lifecycleCallbacks:
+        preUpdate: ['preUpdate']
+#    oneToMany:
+#        votes:
+#            targetEntity: Rapsys\AirBundle\Entity\Vote
+#            mappedBy: application
+#    indexes:
+#        #XXX: used in SessionRepository::XXX
+#        id_user:
+#            columns: [ id, user_id ]
+#        id_user_canceled:
+#            columns: [ id, user_id, canceled ]