X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/58242917a50ec39071529953e77343fd3eb6dda0..c39b12b9d1053db5de56acbc2fb12b7d50851125:/Resources/config/doctrine/Application.orm.yml diff --git a/Resources/config/doctrine/Application.orm.yml b/Resources/config/doctrine/Application.orm.yml index aaf461f..e52cc6e 100644 --- a/Resources/config/doctrine/Application.orm.yml +++ b/Resources/config/doctrine/Application.orm.yml @@ -10,6 +10,12 @@ Rapsys\AirBundle\Entity\Application: options: unsigned: true fields: + score: + type: float + nullable: true + canceled: + type: datetime + nullable: true created: type: datetime updated: @@ -21,7 +27,13 @@ Rapsys\AirBundle\Entity\Application: user: targetEntity: Rapsys\AirBundle\Entity\User inversedBy: applications - oneToMany: - votes: - targetEntity: Rapsys\AirBundle\Entity\Vote - mappedBy: application +# 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 ]