]> Raphaƫl G. Git Repositories - airbundle/blob - Resources/config/doctrine/Application.orm.yml
Revert doctrine Resources/config/doctrine/*.orm.yaml files back to .orm.yml extension
[airbundle] / Resources / config / doctrine / Application.orm.yml
1 Rapsys\AirBundle\Entity\Application:
2 type: entity
3 repositoryClass: Rapsys\AirBundle\Repository\ApplicationRepository
4 table: applications
5 id:
6 id:
7 type: integer
8 generator:
9 strategy: AUTO
10 options:
11 unsigned: true
12 fields:
13 created:
14 type: datetime
15 updated:
16 type: datetime
17 manyToOne:
18 session:
19 targetEntity: Rapsys\AirBundle\Entity\Session
20 inversedBy: applications
21 user:
22 targetEntity: Rapsys\AirBundle\Entity\User
23 inversedBy: applications
24 oneToMany:
25 votes:
26 targetEntity: Rapsys\AirBundle\Entity\Vote
27 mappedBy: application