doctrine.yaml 916 B

1234567891011121314151617181920212223242526272829
  1. parameters:
  2. # Adds a fallback DATABASE_URL if the env var is not set.
  3. # This allows you to run cache:warmup even if your
  4. # environment variables are not available yet.
  5. # You should not need to change this value.
  6. env(DATABASE_URL): ''
  7. doctrine:
  8. dbal:
  9. # configure these for your database server
  10. driver: 'pdo_mysql'
  11. server_version: '5.7'
  12. charset: utf8mb4
  13. default_table_options:
  14. charset: utf8mb4
  15. collate: utf8mb4_unicode_ci
  16. url: '%env(resolve:DATABASE_URL)%'
  17. orm:
  18. auto_generate_proxy_classes: true
  19. naming_strategy: doctrine.orm.naming_strategy.underscore
  20. auto_mapping: true
  21. mappings:
  22. App:
  23. is_bundle: false
  24. type: annotation
  25. dir: '%kernel.project_dir%/src/Entity'
  26. prefix: 'App\Entity'
  27. alias: App