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