mirror of
https://github.com/knex/knex.git
synced 2025-11-03 03:09:42 +00:00
13 lines
250 B
TypeScript
13 lines
250 B
TypeScript
module.exports = {
|
|
client: 'sqlite3',
|
|
connection: {
|
|
filename: __dirname + '/../test.sqlite3',
|
|
},
|
|
migrations: {
|
|
directory: __dirname + '/../knexfile_migrations',
|
|
},
|
|
seeds: {
|
|
directory: __dirname + '/../knexfile_seeds',
|
|
},
|
|
};
|