Use string instead of array

This commit is contained in:
Apher 2026-07-18 03:20:59 +00:00
parent ade08581d9
commit cba2de6d1c

View File

@ -11,7 +11,7 @@ module.exports = (sequelize, DataTypes) => {
allowNull: false allowNull: false
}, },
description: { description: {
type: DataTypes.ARRAY(DataTypes.STRING), type: DataTypes.STRING,
allowNull: true allowNull: true
}, },
dueAt: { dueAt: {