mirror of
https://github.com/knex/knex.git
synced 2025-07-14 12:31:19 +00:00
13 lines
239 B
JavaScript
13 lines
239 B
JavaScript
module.exports = {
|
|
client: 'sqlite3',
|
|
connection: {
|
|
filename: __dirname + '/../test.sqlite3',
|
|
},
|
|
seeds: {
|
|
directory: [
|
|
__dirname + '/seeds-recursive/second',
|
|
__dirname + '/seeds-recursive/first',
|
|
],
|
|
},
|
|
};
|