support sqlite database path in config
This commit is contained in:
parent
4486b3b3c0
commit
e9b10802d1
2 changed files with 2 additions and 1 deletions
|
@ -60,7 +60,7 @@ doctrine:
|
|||
charset: UTF8
|
||||
# if using pdo_sqlite as your database driver, add the path in parameters.yml
|
||||
# e.g. database_path: "%kernel.root_dir%/data/data.db3"
|
||||
# path: "%database_path%"
|
||||
path: "%database_path%"
|
||||
|
||||
orm:
|
||||
auto_generate_proxy_classes: "%kernel.debug%"
|
||||
|
|
|
@ -5,6 +5,7 @@ parameters:
|
|||
database_name: symfony
|
||||
database_user: root
|
||||
database_password: ~
|
||||
database_path: "%kernel.root_dir%/ffcal.sqlite3"
|
||||
|
||||
mailer_transport: smtp
|
||||
mailer_host: 127.0.0.1
|
||||
|
|
Reference in a new issue