Feat(SQL, UI): Redesign database with much more detailed command response quality analysis and created successfully loading Dog Command Links page

This commit is contained in:
2025-06-28 20:48:37 +01:00
parent ab50a81a0e
commit caeb13429a
245 changed files with 7244 additions and 2035 deletions

View File

@@ -0,0 +1,14 @@
USE parts;
DROP TRIGGER IF EXISTS parts.before_insert_DOG_Dog_Change_Set;
DELIMITER //
CREATE TRIGGER parts.before_insert_DOG_Dog_Change_Set
BEFORE INSERT ON parts.DOG_Dog_Change_Set
FOR EACH ROW
BEGIN
IF NEW.updated_last_on <=> NULL THEN
SET NEW.updated_last_on = NOW();
END IF;
END //
DELIMITER ;