removed metadata from condition check model

This commit is contained in:
jackiettran
2025-11-25 16:48:54 -05:00
parent 8de814fdee
commit 2983f67ce8
6 changed files with 72 additions and 28 deletions

View File

@@ -44,10 +44,6 @@ const ConditionCheck = sequelize.define("ConditionCheck", {
allowNull: false,
defaultValue: DataTypes.NOW,
},
metadata: {
type: DataTypes.JSONB,
defaultValue: {},
},
});
module.exports = ConditionCheck;