From 8ea9478a108878d2473f8e752cee2094b50cc337 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Thu, 12 Aug 2021 20:14:54 +0200 Subject: [PATCH] Updated prod db config to sqlite --- knexfile.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/knexfile.js b/knexfile.js index 377e830..360fad8 100644 --- a/knexfile.js +++ b/knexfile.js @@ -10,15 +10,9 @@ module.exports = { }, production: { - client: 'postgresql', + client: 'sqlite3', connection: { - database: 'my_db', - user: 'username', - password: 'password' - }, - pool: { - min: 2, - max: 10 + filename: './db.sqlite3' }, migrations: { tableName: 'knex_migrations'