Retrieving user.id to HBFormPage

This commit is contained in:
ZacTohZY
2024-07-29 02:56:30 +08:00
parent 63c65717b8
commit 8e2b806fbf
2 changed files with 39 additions and 13 deletions

View File

@@ -34,9 +34,14 @@ module.exports = (sequelize, DataTypes) => {
type: DataTypes.BLOB("long"),
allowNull: true,
},
userId: {
type: DataTypes.UUID,
},
},
{
tableName: 'hbcform'
tableName: "hbcform",
timestamps: true,
});
return HBCform;
}