agrs-sequelize-sdk 1.3.84 → 1.3.86
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/models/Article.js +5 -0
- package/package.json +1 -1
package/models/Article.js
CHANGED
|
@@ -104,6 +104,11 @@ module.exports = (sequelize, DataTypes) => {
|
|
|
104
104
|
allowNull: true,
|
|
105
105
|
comment: "Original status from Predicto before any mapping",
|
|
106
106
|
},
|
|
107
|
+
rejectionReason: {
|
|
108
|
+
type: DataTypes.TEXT,
|
|
109
|
+
allowNull: true,
|
|
110
|
+
comment: "Rejection reason from Predicto when keyword is disapproved",
|
|
111
|
+
},
|
|
107
112
|
creationType: {
|
|
108
113
|
type: DataTypes.STRING,
|
|
109
114
|
allowNull: false,
|