removed obsolete "both" enum for throws attribute

This commit is contained in:
Sascha Kühl 2025-05-28 16:07:44 +02:00
parent 9c9d9c9413
commit 8481740ea5
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ module.exports = (sequelize, DataTypes) => {
type: DataTypes.ENUM('left', 'right', 'both'),
},
throws: {
type: DataTypes.ENUM('left', 'right', 'both'),
type: DataTypes.ENUM('left', 'right'),
},
jerseyNumber: {
type: DataTypes.INTEGER,