]> Raphaƫl G. Git Repositories - airbundle/blobdiff - Resources/config/doctrine/Location.orm.yml
Add dance link
[airbundle] / Resources / config / doctrine / Location.orm.yml
index 86d86dbb272dbd7cff2b1bed079cd3a2d518cada..0cb8dfca3870c3763015fa925a71f9223e4d472c 100644 (file)
@@ -1,6 +1,6 @@
 Rapsys\AirBundle\Entity\Location:
     type: entity
-    #repositoryClass: Rapsys\AirBundle\Repository\LocationRepository
+    repositoryClass: Rapsys\AirBundle\Repository\LocationRepository
     table: locations
     id:
         id:
@@ -12,7 +12,7 @@ Rapsys\AirBundle\Entity\Location:
     fields:
         title:
             type: string
-            length: 24
+            length: 32
         address:
             type: string
             length: 32
@@ -30,6 +30,8 @@ Rapsys\AirBundle\Entity\Location:
             type: decimal
             precision: 9
             scale: 6
+        hotspot:
+            type: boolean
         created:
             type: datetime
         updated:
@@ -38,32 +40,16 @@ Rapsys\AirBundle\Entity\Location:
         sessions:
             targetEntity: Rapsys\AirBundle\Entity\Session
             mappedBy: location
-
-#        manyToOne:
-#                title:
-#                        targetEntity: Rapsys\UserBundle\Entity\Title
-#                        inversedBy: users
-#        manyToMany:
-#                groups:
-#                        targetEntity: Rapsys\UserBundle\Entity\Group
-#                        inversedBy: users
-#                        joinTable:
-#                                name: groups_users
-#
-#        manyToOne:
-#                site:
-#                        targetEntity: Rapsys\BlogBundle\Entity\Site
-#                        inversedBy: articles
-#                author:
-#                        targetEntity: Rapsys\BlogBundle\Entity\Author
-#                        inversedBy: articles
-#        manyToMany:
-#                keywords:
-#                        targetEntity: Rapsys\BlogBundle\Entity\Keyword
-#                        inversedBy: articles
-#                        joinTable:
-#                                name: articles_keywords
-#        oneToMany:
-#                article_translations:
-#                        targetEntity: Rapsys\BlogBundle\Entity\ArticleTranslation
-#                        mappedBy: article
+        snippets:
+            targetEntity: Rapsys\AirBundle\Entity\Snippet
+            mappedBy: location
+    manyToMany:
+        users:
+            targetEntity: Rapsys\AirBundle\Entity\User
+            mappedBy: locations
+    indexes:
+        #XXX: used in SessionRepository::(findAllPendingDailyWeather|findAllPendingHourlyWeather)
+        zipcode:
+            columns: [ zipcode ]
+    lifecycleCallbacks:
+        preUpdate: ['preUpdate']