collection-crud/config/packages/doctrine.yaml

31 lines
961 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'
types:
money: App\Types\MoneyType
2017-11-30 15:06:13 -05:00
mapping_types:
bit: boolean
money: money
# With Symfony 3.3, remove the `resolve:` prefix
url: '%env(DATABASE_URL)%'
2017-11-30 15:06:13 -05:00
orm:
auto_generate_proxy_classes: '%kernel.debug%'
2020-06-02 16:15:27 -04:00
naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
2017-11-30 15:06:13 -05:00
auto_mapping: true
mappings:
App:
2017-11-30 15:06:13 -05:00
is_bundle: false
type: attribute
2017-11-30 15:06:13 -05:00
dir: '%kernel.project_dir%/src/Entity'
prefix: 'App\Entity'
alias: App