Fix users being able to claim a card twice if the user has multiple of it already
This commit is contained in:
parent
74cdf818d1
commit
ad505b3ea2
7 changed files with 87 additions and 15 deletions
|
@ -0,0 +1,10 @@
|
|||
INSERT INTO claim (
|
||||
Id,
|
||||
ClaimId,
|
||||
InventoryId
|
||||
)
|
||||
SELECT
|
||||
UUID(),
|
||||
ClaimId,
|
||||
Id
|
||||
FROM inventory;
|
Loading…
Add table
Add a link
Reference in a new issue