agrs-sequelize-sdk 1.0.52 → 1.0.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.
Files changed (2) hide show
  1. package/models/Ad.js +1 -1
  2. package/package.json +1 -1
package/models/Ad.js CHANGED
@@ -60,7 +60,7 @@ module.exports = (sequelize, DataTypes) => {
60
60
  allowNull: true,
61
61
  },
62
62
  websiteUrl: {
63
- type: DataTypes.STRING(1000), // Increase limit for longer URLs
63
+ type: DataTypes.STRING(1024), // Increase limit for longer URLs
64
64
  allowNull: true,
65
65
  },
66
66
  pageId: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agrs-sequelize-sdk",
3
- "version": "1.0.52",
3
+ "version": "1.0.53",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "start": "node index.js",