carecentive

Update Notes

0.9.2

You may receive errors indicating that no ORM was found/knex was not bound to Objection.js: "no database connection available for a query. you need to bind the model class or the query to a knex instance".

In this case, please replace:

const { Model } = require('objection');

with

const { Model } = require('@carecentive/carecentive-core/models/ORM');

This may especially apply to your models, i.e. in the /models folder.