chore: Upgrade pg and sequelize to support node 14+ (#1462)

* Upgrade pg and sequelize to support node 14+

When Node 14 came out the app was incompatible, we should always have a maximum version defined here until the server code has been tested to prove compatibility

Co-authored-by: Lance Whatley <whatl3y@gmail.com>
This commit is contained in:
Tom Moor
2020-08-20 20:19:44 -07:00
committed by GitHub
parent 6dd6768f07
commit 26c574ab58
11 changed files with 129 additions and 158 deletions

View File

@ -37,7 +37,9 @@ export default async function documentMover({
transaction = await sequelize.transaction();
// remove from original collection
const collection = await document.getCollection({ transaction });
const collection = await Collection.findByPk(document.collectionId, {
transaction,
});
const documentJson = await collection.removeDocumentInStructure(
document,
{