linkylinky/knexfile.js

23 lines
325 B
JavaScript
Raw Normal View History

2021-08-12 18:13:46 +00:00
// Update with your config settings.
module.exports = {
development: {
client: 'sqlite3',
connection: {
filename: './dev.sqlite3'
}
},
production: {
2021-08-12 18:14:54 +00:00
client: 'sqlite3',
2021-08-12 18:13:46 +00:00
connection: {
2021-08-14 10:56:02 +00:00
filename: './db/db.sqlite3'
2021-08-12 18:13:46 +00:00
},
migrations: {
tableName: 'knex_migrations'
}
}
};