debug migrations path

This commit is contained in:
Sorrel Bri 2020-01-09 16:32:36 -08:00
parent f7990fffd9
commit 800df45082
3 changed files with 8 additions and 2 deletions

View file

@ -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: {