Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable use_savepoints by default for Doctrine DBAL #1290

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doctrine/doctrine-bundle/2.0/config/packages/doctrine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ doctrine:
# IMPORTANT: You MUST configure your server version,
# either here or in the DATABASE_URL env var (see .env file)
#server_version: '16'
use_savepoints: true
fabpot marked this conversation as resolved.
Show resolved Hide resolved
orm:
auto_generate_proxy_classes: true
naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ doctrine:
#server_version: '16'

profiling_collect_backtrace: '%kernel.debug%'
use_savepoints: true
orm:
auto_generate_proxy_classes: true
enable_lazy_ghost_objects: true
Expand Down
1 change: 1 addition & 0 deletions doctrine/doctrine-bundle/2.3/config/packages/doctrine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ doctrine:
# IMPORTANT: You MUST configure your server version,
# either here or in the DATABASE_URL env var (see .env file)
#server_version: '16'
use_savepoints: true
orm:
auto_generate_proxy_classes: true
naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
Expand Down
1 change: 1 addition & 0 deletions doctrine/doctrine-bundle/2.4/config/packages/doctrine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ doctrine:
# IMPORTANT: You MUST configure your server version,
# either here or in the DATABASE_URL env var (see .env file)
#server_version: '16'
use_savepoints: true
orm:
auto_generate_proxy_classes: true
naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
Expand Down
1 change: 1 addition & 0 deletions doctrine/doctrine-bundle/2.8/config/packages/doctrine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ doctrine:
# IMPORTANT: You MUST configure your server version,
# either here or in the DATABASE_URL env var (see .env file)
#server_version: '16'
use_savepoints: true
orm:
auto_generate_proxy_classes: true
enable_lazy_ghost_objects: true
Expand Down
1 change: 1 addition & 0 deletions doctrine/doctrine-bundle/2.9/config/packages/doctrine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ doctrine:
# IMPORTANT: You MUST configure your server version,
# either here or in the DATABASE_URL env var (see .env file)
#server_version: '16'
use_savepoints: true
orm:
auto_generate_proxy_classes: true
enable_lazy_ghost_objects: true
Expand Down
Loading