2020-08-16 19:22:26 +03:00

12 lines
295 B
JavaScript

/** @type {import("../../../").Config} */
const config = {
client: 'sqlite3',
connection: {
filename: './test.sqlite3',
},
useNullAsDefault: true,
};
export default config;
/** Named exports: or knex won't find them */
export const { client, connection, useNullAsDefault } = config;