mirror of
https://github.com/knex/knex.git
synced 2025-07-13 03:50:42 +00:00
10 lines
169 B
JavaScript
10 lines
169 B
JavaScript
module.exports = {
|
|
client: 'sqlite3',
|
|
connection: {
|
|
filename: __dirname + '/../test.sqlite3',
|
|
},
|
|
seeds: {
|
|
directory: __dirname + '/seeds-error',
|
|
},
|
|
};
|