debug migrations path
This commit is contained in:
parent
f7990fffd9
commit
800df45082
3 changed files with 8 additions and 2 deletions
|
@ -5,12 +5,18 @@ module.exports = {
|
||||||
|
|
||||||
development: {
|
development: {
|
||||||
client: 'postgresql',
|
client: 'postgresql',
|
||||||
connection: process.env.PG_CONNECTION_STRING
|
connection: process.env.PG_CONNECTION_STRING,
|
||||||
|
migrations: {
|
||||||
|
directory: './data/migrations',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
test: {
|
test: {
|
||||||
client: 'postgresql',
|
client: 'postgresql',
|
||||||
connection: process.env.PG_CONNECTION_STRING_TEST
|
connection: process.env.PG_CONNECTION_STRING_TEST,
|
||||||
|
migrations: {
|
||||||
|
directory: './data/migrations',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
staging: {
|
staging: {
|
||||||
|
|
Loading…
Reference in a new issue