mirror of
https://github.com/knex/knex.git
synced 2025-07-13 12:00:55 +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',
|
|
};
|