-
-
Notifications
You must be signed in to change notification settings - Fork 638
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjusted the indentation of the cycle-bundle.yaml file because it had…
… 2 levels instead of 4. Added the migrations folder that I forgot.
- Loading branch information
1 parent
73e8ce3
commit a3e94f7
Showing
2 changed files
with
26 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,34 @@ | ||
cycle: | ||
dbal: | ||
databases: | ||
default: | ||
connection: default_connection | ||
dbal: | ||
databases: | ||
default: | ||
connection: default_connection | ||
|
||
|
||
connections: | ||
default_connection: | ||
driver: mysql | ||
host: '%env(resolve:DB_HOST)%' | ||
port: '%env(int:DB_PORT)%' | ||
dbname: '%env(resolve:DB_NAME)%' | ||
user: '%env(resolve:DB_USER)%' | ||
password: '%env(resolve:DB_PASSWORD)%' | ||
charset: utf8 | ||
|
||
connections: | ||
default_connection: | ||
driver: mysql | ||
host: '%env(resolve:DB_HOST)%' | ||
port: '%env(int:DB_PORT)%' | ||
dbname: '%env(resolve:DB_NAME)%' | ||
user: '%env(resolve:DB_USER)%' | ||
password: '%env(resolve:DB_PASSWORD)%' | ||
charset: utf8 | ||
orm: | ||
schema: | ||
type: attribute | ||
dir: "%kernel.project_dir%/src/Entity" | ||
cache_dir: "%kernel.cache_dir%/cycle" | ||
relation: | ||
fk_create: false | ||
index_create: false | ||
|
||
orm: | ||
schema: | ||
type: attribute | ||
dir: "%kernel.project_dir%/src/Entity" | ||
cache_dir: "%kernel.cache_dir%/cycle" | ||
relation: | ||
fk_create: false | ||
index_create: false | ||
migration: ~ | ||
migration: | ||
directory: "%kernel.project_dir%/migrations" | ||
|
||
when@test: | ||
dbal: | ||
databases: | ||
default: | ||
prefix: '_test%env(default::TEST_TOKEN)%' | ||
default: | ||
prefix: '_test%env(default::TEST_TOKEN)%' | ||
Empty file.