linkylinky/knexfile.js
Nicolai Ort 512acc0b8c
All checks were successful
continuous-integration/drone/push Build is passing
Prod db now resides in db folder
2021-08-14 12:56:02 +02:00

23 lines
325 B
JavaScript

// Update with your config settings.
module.exports = {
development: {
client: 'sqlite3',
connection: {
filename: './dev.sqlite3'
}
},
production: {
client: 'sqlite3',
connection: {
filename: './db/db.sqlite3'
},
migrations: {
tableName: 'knex_migrations'
}
}
};