mirror of
https://github.com/knex/knex.git
synced 2025-11-20 03:54:37 +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',
|
||
|
|
},
|
||
|
|
};
|