We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Allows persistence to Postgres/MySQL via Sequelize
const SQLStore = require('jagapi-sequelize') const debug = require('debug')('qbounty:sql') const config = require('../../config') const createHandler = () => new SQLStore(config.DATABASE_URI, { logging: debug }) exports = module.exports = { createHandler }