make saloon muteable

This commit is contained in:
keyan 2023-09-29 14:43:25 -05:00
parent 523b6674b8
commit f2b1c321c2
2 changed files with 5 additions and 1 deletions

View File

@ -462,7 +462,8 @@ export default {
FROM "Item"
${whereClause(
'"pinId" IS NOT NULL',
subClause(sub, 1))}
subClause(sub, 1),
muteClause(me))}
) rank_filter WHERE RANK = 1`
}, ...subArr)
}

View File

@ -0,0 +1,3 @@
UPDATE "Item"
SET "userId" = 17226
WHERE "pinId" = (select "pinId" from "Item" where title = 'Stacker Saloon' and "userId" = 17226 limit 1);