agrs-sequelize-sdk 1.2.51 → 1.2.52
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/PipelineExecution.js +13 -0
- package/package.json +1 -1
|
@@ -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",
|