changing the type of org desc and project desc to text

This commit is contained in:
Arjun Patel
2019-05-14 23:06:26 -07:00
parent 09375ba958
commit e46bd0f52a
3 changed files with 45 additions and 2 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ module.exports = (sequelize, DataTypes) => {
type: DataTypes.STRING,
allowNull: true
},
short_description: { type: DataTypes.STRING, allowNull: false },
short_description: { type: DataTypes.Text, allowNull: false },
total_received: {
type: DataTypes.INTEGER,
defaultValue: 0
+1 -1
View File
@@ -26,7 +26,7 @@ module.exports = (sequelize, DataTypes) => {
type: DataTypes.STRING(1000),
allowNull: false
},
description: DataTypes.STRING,
description: { type: DataTypes.Text, allowNull: false },
isComplete: {
type: DataTypes.BOOLEAN,
defaultValue: false