12 lines
295 B
JavaScript
Raw Permalink Normal View History

/** @type {import("../../../").Config} */
const config = {
client: 'sqlite3',
connection: {
filename: './test.sqlite3',
},
useNullAsDefault: true,
};
2020-08-16 18:22:26 +02:00
export default config;
/** Named exports: or knex won't find them */
export const { client, connection, useNullAsDefault } = config;