@sera4/essentia 1.1.16 → 1.1.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/package.tar.gz +0 -0
- package/paper-trail/index.js +2 -1
package/package.json
CHANGED
package/package.tar.gz
CHANGED
|
Binary file
|
package/paper-trail/index.js
CHANGED
|
@@ -595,7 +595,6 @@ paperTrail.init = (sequelize, sequelizePackage, optionsArg) => {
|
|
|
595
595
|
foreignKey: options.defaultAttributes.revisionId,
|
|
596
596
|
constraints: false,
|
|
597
597
|
});
|
|
598
|
-
paginator.paginate(Revision);
|
|
599
598
|
|
|
600
599
|
RevisionChange.belongsTo(Revision);
|
|
601
600
|
|
|
@@ -603,6 +602,8 @@ paperTrail.init = (sequelize, sequelizePackage, optionsArg) => {
|
|
|
603
602
|
db[RevisionChange.name] = RevisionChange;
|
|
604
603
|
}
|
|
605
604
|
|
|
605
|
+
paginator.paginate(Revision);
|
|
606
|
+
|
|
606
607
|
if (db)
|
|
607
608
|
db[Revision.name] = Revision;
|
|
608
609
|
|