chill-bundles/Resources/config/doctrine/PostalCode.orm.yml

22 lines
491 B
YAML

Chill\MainBundle\Entity\PostalCode:
type: entity
table: chill_main_postal_code
id:
id:
type: integer
id: true
generator:
strategy: AUTO
fields:
name:
type: string
length: 255
column: label
code:
type: string
length: 100
manyToOne:
country:
targetEntity: Chill\MainBundle\Entity\Country
lifecycleCallbacks: { }