mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 21:34:25 +00:00
Warning : this commit require to rename some table column, but the original Version file has been update. If you do not care to loose your date, you may run : ``` php app/console doctrine:migrations:execute --down 20160318111334 php app/console doctrine:migrations:execute --up 20160318111334 php app/console doctrine:cache:metadata #(if you have a cache for doctrine meta date) ``` close #20
20 lines
450 B
YAML
20 lines
450 B
YAML
Chill\EventBundle\Entity\Status:
|
|
type: entity
|
|
table: chill_event_status
|
|
id:
|
|
id:
|
|
type: integer
|
|
id: true
|
|
generator:
|
|
strategy: AUTO
|
|
fields:
|
|
name:
|
|
type: json_array
|
|
active:
|
|
type: boolean
|
|
manyToOne:
|
|
type:
|
|
targetEntity: Chill\EventBundle\Entity\EventType
|
|
inversedBy: statuses
|
|
lifecycleCallbacks: { }
|