mirror of
https://github.com/knex/knex.git
synced 2025-12-02 09:57:48 +00:00
14 lines
226 B
TypeScript
14 lines
226 B
TypeScript
export const client = 'sqlite3';
|
|
|
|
export const connection = {
|
|
filename: '../test.sqlite3',
|
|
};
|
|
|
|
export const migrations = {
|
|
directory: './knexfile_migrations',
|
|
};
|
|
|
|
export const seeds = {
|
|
directory: './knexfile_seeds',
|
|
};
|