mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-23 07:22:24 +00:00
10 lines
243 B
JavaScript
10 lines
243 B
JavaScript
|
// Only used to be able to run "knex migrate:make <migration name>" on the development machine.
|
||
|
// Not used in the supervisor.
|
||
|
|
||
|
module.exports = {
|
||
|
client: 'sqlite3',
|
||
|
connection: {
|
||
|
filename: './database.sqlite'
|
||
|
},
|
||
|
useNullAsDefault: true
|
||
|
}
|