Reverse engeneing type personalisé
Bonjour,
Je tente un reverse engenering :
Code:
1 2
|
symfony console doctrine:mapping:import "App\Entity" annotation --path=src/Entity |
voici l'erreur
Code:
1 2 3
|
Doctrine\DBAL\Exception]
Unknown database type niveau requested, Doctrine\DBAL\Platforms\PostgreSQL100Platform may not support it. |
D'après loa doc , je dois faire ceci dans Dotrine.yaml
Code:
1 2 3 4 5 6 7 8 9 10 11
|
doctrine:
dbal:
options:
search_path: 'brain'
mapping_types:
niveau: string
bloc: string
ue_aa: string
name: string |
Mais j'ai l'impression que ce fichier n'est pas pris en compte lors de l’exécution de la cli
Auriez-vous une piste ?
merci.