This repository has been archived on 2022-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
IcyNet.eu/scripts/load-database.js

16 lines
345 B
JavaScript

const path = require('path')
const knex = require('knex')
const objection = require('objection')
const knexfile = require(path.join(__dirname, '../knexfile'))
const knexDB = knex(knexfile)
const objectionModel = objection.Model
objectionModel.knex(knexDB)
module.exports = {
knex: knexDB,
Model: objectionModel,
destroy: knex.destroy
}