knex/test/jake-util/knexfile/knexfile_async.js

13 lines
264 B
JavaScript
Raw Permalink Normal View History

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