Feat(SQL, UI): Button Icons page, Command Button Links page created with get and set functionality.

This commit is contained in:
2025-07-17 18:58:06 +01:00
parent e0805ec2ed
commit 4e214c3bde
151 changed files with 12224 additions and 463 deletions

View File

@@ -42,9 +42,9 @@ BEGIN
SELECT NEW.id_button_icon, 'name', OLD.name, NEW.name, NEW.id_change_set
WHERE NOT (OLD.name <=> NEW.name)
UNION
-- Changed description
SELECT NEW.id_button_icon, 'description', OLD.description, NEW.description, NEW.id_change_set
WHERE NOT (OLD.description <=> NEW.description)
-- Changed notes
SELECT NEW.id_button_icon, 'notes', OLD.notes, NEW.notes, NEW.id_change_set
WHERE NOT (OLD.notes <=> NEW.notes)
UNION
-- Changed active
SELECT NEW.id_button_icon, 'active', CONVERT(CONVERT(OLD.active, SIGNED), CHAR), CONVERT(CONVERT(NEW.active, SIGNED), CHAR), NEW.id_change_set