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