33 lines
518 B
JavaScript
Raw Normal View History

2019-06-20 16:38:15 +02:00
'use strict';
/**
* Default db infos
*/
module.exports = {
sqlite: {
connector: 'strapi-hook-bookshelf',
settings: {
client: 'sqlite',
filename: '.tmp/data.db',
},
options: {
useNullAsDefault: true,
},
},
postgres: {
connector: 'strapi-hook-bookshelf',
settings: {
client: 'postgres',
},
},
mysql: {
connector: 'strapi-hook-bookshelf',
settings: {
client: 'mysql',
},
},
mongo: {
connector: 'strapi-hook-mongoose',
},
};