mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-18 13:26:26 +00:00
fb9618e25c
Signed-off-by: Pablo Carranza Velez <pablo@resin.io>
14 lines
295 B
JavaScript
14 lines
295 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,
|
|
migrations: {
|
|
directory: './src/migrations'
|
|
}
|
|
}
|