Server-side 2FA

This commit is contained in:
2024-08-14 21:49:44 +08:00
parent be1c8de5bf
commit ffd40f6d39
3 changed files with 98 additions and 0 deletions

View File

@@ -62,6 +62,10 @@ module.exports = (sequelize) => {
type: DataTypes.DATE,
allowNull: true,
},
secret: {
type: DataTypes.STRING(64),
allowNull: true,
},
},
{
tableName: "users",