diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-02 13:15:58 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-02 13:15:58 +0200 |
| commit | 693068080d9f0a17b3db7882f020cebf8e0b261c (patch) | |
| tree | bd5f753f0b8813d11f1b97f4f71e42d530a74263 /models | |
| parent | bdf4a4f5e090aece803db558639efe32e7733c28 (diff) | |
| download | orm-693068080d9f0a17b3db7882f020cebf8e0b261c.tar.gz orm-693068080d9f0a17b3db7882f020cebf8e0b261c.zip | |
allow item use participant id to be non-unique
Diffstat (limited to 'models')
| -rw-r--r-- | models/participant_item_use.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/models/participant_item_use.js b/models/participant_item_use.js index d426708..850fba9 100644 --- a/models/participant_item_use.js +++ b/models/participant_item_use.js @@ -10,8 +10,7 @@ module.exports = function(sequelize, DataTypes) { }, participant_api_id: { type: DataTypes.STRING(191), - allowNull: false, - unique: true + allowNull: false }, item_id: { type: DataTypes.STRING(191), |
