mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
25 lines
641 B
YAML
25 lines
641 B
YAML
Chill\MainBundle\Entity\PostalCode:
|
|
type: entity
|
|
table: chill_main_postal_code
|
|
repositoryClass: Chill\MainBundle\Repository\PostalCodeRepository
|
|
indexes:
|
|
- { name: search_name_code, columns: [ "code", "label" ] }
|
|
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: { }
|