actually add the character list

This commit is contained in:
jmosrael@gmail.com
2024-05-05 00:10:41 -07:00
parent 7e9e0d16b0
commit b411065751
2 changed files with 72 additions and 1 deletions

View File

@@ -18,7 +18,8 @@ const Character = sequelize.define(
characterName: { type: DataTypes.TEXT },
playerName: { type: DataTypes.TEXT },
role: { type: DataTypes.TEXT },
creationDate: { type: DataTypes.INTEGER }
creationDate: { type: DataTypes.INTEGER },
status: { type: DataTypes.TEXT }
},
{ timestamps: false }
)