| 1 2 3 4 5 6 7 8 9 10 11 | 1x | module.exports = {
test: {
connection: 'postgres://postgres:test@localhost:5432/koex-test',
client: 'pg',
migrations: {
directory: __dirname + "/src/api/db/migrations",
tableName: "version"
}
},
};
|