-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
.cfmigrations.json
38 lines (38 loc) · 1.35 KB
/
.cfmigrations.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"contentbox": {
"manager": "cfmigrations.models.QBMigrationManager",
"migrationsDirectory": "modules/contentbox/migrations/",
"seedsDirectory": "tests/resources/seeds/",
"properties": {
"defaultGrammar": "AutoDiscover@qb",
"schema" : "${DB_DATABASE}",
"migrationsTable": "cfmigrations",
"connectionInfo": {
"connectionString": "${DB_CONNECTIONSTRING}",
"class": "${DB_CLASS}",
"username": "${DB_USER}",
"password": "${DB_PASSWORD}",
"bundleName": "${DB_BUNDLENAME}",
"bundleVersion": "${DB_BUNDLEVERSION}"
}
}
},
"default": {
"manager": "cfmigrations.models.QBMigrationManager",
"migrationsDirectory": "resources/database/migrations/",
"seedsDirectory": "resources/database/seeds/",
"properties": {
"defaultGrammar": "AutoDiscover@qb",
"schema" : "${DB_DATABASE}",
"migrationsTable": "cfmigrations_app",
"connectionInfo": {
"connectionString": "${DB_CONNECTIONSTRING}",
"class": "${DB_CLASS}",
"username": "${DB_USER}",
"password": "${DB_PASSWORD}",
"bundleName": "${DB_BUNDLENAME}",
"bundleVersion": "${DB_BUNDLEVERSION}"
}
}
}
}