Added account type User property

This commit is contained in:
Wind-Explorer
2024-06-30 00:21:44 +08:00
parent aa8ce41e70
commit 7b9afb27b8

View File

@@ -40,6 +40,11 @@ module.exports = (sequelize) => {
type: DataTypes.BLOB("long"), type: DataTypes.BLOB("long"),
allowNull: true, allowNull: true,
}, },
accountType: {
type: DataTypes.TINYINT(2),
allowNull: false,
defaultValue: 0
},
isArchived: { isArchived: {
type: DataTypes.BOOLEAN, type: DataTypes.BOOLEAN,
allowNull: false, allowNull: false,