mirror of
https://github.com/strapi/strapi.git
synced 2025-07-19 07:02:26 +00:00
16 lines
326 B
Plaintext
16 lines
326 B
Plaintext
![]() |
module.exports = ({ env }) => ({
|
||
|
defaultConnection: 'default',
|
||
|
connections: {
|
||
|
default: {
|
||
|
connector: 'bookshelf',
|
||
|
settings: {
|
||
|
client: 'sqlite',
|
||
|
filename: env('DATABASE_FILENAME', '<%= settings.filename %>'),
|
||
|
},
|
||
|
options: {
|
||
|
useNullAsDefault: true,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
});
|