mirror of
https://github.com/knex/knex.git
synced 2025-07-14 12:31:19 +00:00
15 lines
227 B
TypeScript
15 lines
227 B
TypeScript
![]() |
|
||
|
export const client = 'sqlite3';
|
||
|
|
||
|
export const connection = {
|
||
|
filename: '../test.sqlite3',
|
||
|
};
|
||
|
|
||
|
export const migrations = {
|
||
|
directory: './knexfile_migrations',
|
||
|
};
|
||
|
|
||
|
export const seeds = {
|
||
|
directory: './knexfile_seeds',
|
||
|
};
|