mirror of
https://github.com/grocy/grocy.git
synced 2025-08-28 17:10:11 +00:00
Don't use double quoted string literals (in triggers / RAISE)
This commit is contained in:
@@ -6,5 +6,5 @@ BEGIN
|
||||
FROM products p
|
||||
WHERE IFNULL(NEW.parent_product_id, '') != ''
|
||||
AND IFNULL(parent_product_id, '') = NEW.id
|
||||
) NOTNULL) THEN RAISE(ABORT, "Unsupported product nesting level detected (currently only 1 level is supported)") END;
|
||||
) NOTNULL) THEN RAISE(ABORT, 'Unsupported product nesting level detected (currently only 1 level is supported)') END;
|
||||
END;
|
||||
|
Reference in New Issue
Block a user