fix(db): switch blockId and groupId on old answers
This commit is contained in:
@ -0,0 +1,12 @@
|
||||
-- Update old answers
|
||||
UPDATE "Answer" a
|
||||
SET "blockId" = a."groupId",
|
||||
"groupId" = a."blockId"
|
||||
WHERE "createdAt" < '2022-06-10 22:00:00 UTC'
|
||||
AND NOT EXISTS (
|
||||
SELECT 1
|
||||
FROM "Answer"
|
||||
WHERE "resultId" = a."resultId"
|
||||
AND "blockId" = a."groupId"
|
||||
AND "groupId" = a."blockId"
|
||||
);
|
Reference in New Issue
Block a user