agrs-sequelize-sdk 1.0.59 → 1.0.61

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 +2 -2
  2. package/package.json +1 -1
package/models/Ad.js CHANGED
@@ -52,11 +52,11 @@ module.exports = (sequelize, DataTypes) => {
52
52
  allowNull: true,
53
53
  },
54
54
  messages: {
55
- type: DataTypes.ARRAY(DataTypes.STRING), // Array of primary text messages
55
+ type: DataTypes.ARRAY(DataTypes.TEXT), // Array of primary text messages
56
56
  allowNull: true,
57
57
  },
58
58
  headlines: {
59
- type: DataTypes.ARRAY(DataTypes.STRING), // Array of headlines
59
+ type: DataTypes.ARRAY(DataTypes.TEXT), // Array of headlines
60
60
  allowNull: true,
61
61
  },
62
62
  websiteUrl: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agrs-sequelize-sdk",
3
- "version": "1.0.59",
3
+ "version": "1.0.61",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "start": "node index.js",