5353
5454# If you have a single connection, you can use this syntax.
5555# Connection name will be "default" when configured this way.
56- connections : " pgsql://username:password@hostname:port?version=16.0&other_option=..."
56+ connections : " pgsql://username:password@hostname:port/database ?version=16.0&other_option=..."
5757
5858# Alternatively, you are allowed to have more than one connection, case
5959# in which you might synthesize the configuration as this:
6060# connections:
61- # connection_one: "pgsql://username:password@hostname:port?version=16.0&other_option=..."
62- # connection_two: "mysql://username:password@hostname:port?version=8.1&other_option=..."
61+ # connection_one: "pgsql://username:password@hostname:port/database ?version=16.0&other_option=..."
62+ # connection_two: "mysql://username:password@hostname:port/database ?version=8.1&other_option=..."
6363
6464# For advanced usage, you may also override any parameter for each connection.
6565# Each key is a connection name, all parameters above are allowed for each
@@ -72,7 +72,7 @@ connections: "pgsql://username:password@hostname:port?version=16.0&other_option=
7272# # Any URL built for doctrine/dbal usage should work.
7373# # URL is the sole mandatory parameter.
7474# # Complete list of accepted parameters follows.
75- # url: "pgsql://username:password@hostname:port?version=16.0&other_option=..."
75+ # url: "pgsql://username:password@hostname:port/database ?version=16.0&other_option=..."
7676# backup_binary: /usr/local/bin/vendor-one-dump
7777# backup_excluded_tables: ['table_one', 'table_two']
7878# backup_expiration_age: '1 month ago'
@@ -84,7 +84,7 @@ connections: "pgsql://username:password@hostname:port?version=16.0&other_option=
8484# storage_directory: /path/to/storage
8585# storage_filename_strategy: datetime
8686# connection_two:
87- # url: "mysql://username:password@hostname:port?version=8.1&other_option=..."
87+ # url: "mysql://username:password@hostname:port/database ?version=8.1&other_option=..."
8888# # ...
8989
9090# You can explicitly set which will be default connection in use when none
0 commit comments