mirror of
https://github.com/knex/knex.git
synced 2025-12-09 05:47:57 +00:00
15 lines
292 B
JavaScript
15 lines
292 B
JavaScript
module.exports = {
|
|
client: 'sqlite3',
|
|
connection: {
|
|
filename: __dirname + '/../test.sqlite3',
|
|
},
|
|
migrations: {
|
|
directory: __dirname + '/../knexfile-stubs',
|
|
stub: 'table.stub',
|
|
},
|
|
seeds: {
|
|
directory: __dirname + '/../knexfile-stubs',
|
|
stub: 'seed.stub',
|
|
},
|
|
};
|