mirror of
https://gitea.baerentsen.space/FrederikBaerentsen/BrickTracker.git
synced 2026-02-18 06:08:46 -06:00
Quote SQL identifiers as best practice and to avoid any problem in the future
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
UPDATE missing
|
||||
SET quantity = :quantity
|
||||
WHERE set_num IS NOT DISTINCT FROM :set_num
|
||||
AND id IS NOT DISTINCT FROM :id
|
||||
AND u_id IS NOT DISTINCT FROM :u_id
|
||||
UPDATE "missing"
|
||||
SET "quantity" = :quantity
|
||||
WHERE "missing"."set_num" IS NOT DISTINCT FROM :set_num
|
||||
AND "missing"."id" IS NOT DISTINCT FROM :id
|
||||
AND "missing"."u_id" IS NOT DISTINCT FROM :u_id
|
||||
|
||||
Reference in New Issue
Block a user