collection-crud/config/packages/doctrine.yaml

32 lines
994 B
YAML
Raw Normal View History

2017-11-30 15:06:13 -05:00
parameters:
# Adds a fallback DATABASE_URL if the env var is not set.
# This allows you to run cache:warmup even if your
# environment variables are not available yet.
# You should not need to change this value.
env(DATABASE_URL): ''
doctrine:
dbal:
# configure these for your database server
driver: 'pdo_pgsql'
2017-11-30 15:06:13 -05:00
types:
money: CameraBundle\Types\MoneyType
mapping_types:
bit: boolean
money: money
# With Symfony 3.3, remove the `resolve:` prefix
url: '%env(resolve:DATABASE_URL)%'
orm:
auto_generate_proxy_classes: '%kernel.debug%'
naming_strategy: doctrine.orm.naming_strategy.underscore
auto_mapping: true
mappings:
2018-02-14 16:19:26 -05:00
CameraBundle:
2017-11-30 15:06:13 -05:00
is_bundle: false
type: annotation
dir: '%kernel.project_dir%/src/Entity'
2018-02-14 16:19:26 -05:00
prefix: 'CameraBundle\Entity'
alias: CameraBundle