make saloon muteable
This commit is contained in:
parent
523b6674b8
commit
f2b1c321c2
|
@ -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)
|
||||
}
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
UPDATE "Item"
|
||||
SET "userId" = 17226
|
||||
WHERE "pinId" = (select "pinId" from "Item" where title = 'Stacker Saloon' and "userId" = 17226 limit 1);
|
Loading…
Reference in New Issue