agrs-sequelize-sdk 1.2.51 → 1.2.53
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.
|
@@ -31,10 +31,23 @@ module.exports = (sequelize, DataTypes) => {
|
|
|
31
31
|
type: DataTypes.INTEGER,
|
|
32
32
|
allowNull: true,
|
|
33
33
|
},
|
|
34
|
+
compadoDaysBack: { // Added missing column
|
|
35
|
+
type: DataTypes.INTEGER,
|
|
36
|
+
allowNull: true,
|
|
37
|
+
},
|
|
38
|
+
cfn2sDaysBack: { // Added missing column
|
|
39
|
+
type: DataTypes.INTEGER,
|
|
40
|
+
allowNull: true,
|
|
41
|
+
},
|
|
34
42
|
error: {
|
|
35
43
|
type: DataTypes.TEXT,
|
|
36
44
|
allowNull: true,
|
|
37
45
|
},
|
|
46
|
+
feedTimestamps: { // Added new column for feed timestamps
|
|
47
|
+
type: DataTypes.JSONB, // Use JSONB for PostgreSQL
|
|
48
|
+
allowNull: true,
|
|
49
|
+
field: 'feed_timestamps', // Map to snake_case column name
|
|
50
|
+
},
|
|
38
51
|
},
|
|
39
52
|
{
|
|
40
53
|
tableName: "pipeline_executions",
|
|
@@ -97,6 +97,11 @@ module.exports = (sequelize, DataTypes) => {
|
|
|
97
97
|
allowNull: true,
|
|
98
98
|
defaultValue: "RSOC",
|
|
99
99
|
},
|
|
100
|
+
feedType: {
|
|
101
|
+
type: DataTypes.STRING,
|
|
102
|
+
allowNull: true,
|
|
103
|
+
comment: "Type of feed campaign",
|
|
104
|
+
},
|
|
100
105
|
adTitle: {
|
|
101
106
|
type: DataTypes.STRING,
|
|
102
107
|
allowNull: true,
|