agrs-sequelize-sdk 1.2.61 → 1.2.62

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.
Files changed (2) hide show
  1. package/models/Ad.js +5 -0
  2. package/package.json +1 -1
package/models/Ad.js CHANGED
@@ -134,6 +134,11 @@ module.exports = (sequelize, DataTypes) => {
134
134
  {
135
135
  fields: ["AdSetID"], // Index on AdSetID for faster join
136
136
  },
137
+ {
138
+ name: "idx_ad_policy_agrs_cid_status",
139
+ fields: ["AGRS_CID", "policy_status"],
140
+ comment: "Critical index for policy filtering queries"
141
+ },
137
142
  ],
138
143
  }
139
144
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agrs-sequelize-sdk",
3
- "version": "1.2.61",
3
+ "version": "1.2.62",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "start": "node index.js",