knex/test/jake-util/knexfile/knexfile.js
2019-10-25 20:17:26 +02:00

13 lines
250 B
JavaScript

module.exports = {
client: 'sqlite3',
connection: {
filename: __dirname + '/../test.sqlite3',
},
migrations: {
directory: __dirname + '/../knexfile_migrations',
},
seeds: {
directory: __dirname + '/../knexfile_seeds',
},
};