通过了单元测试嗯

This commit is contained in:
2026-03-07 15:53:13 +08:00
parent 7f1035ff43
commit ca1db103b5
7 changed files with 83 additions and 22 deletions

View File

@ -25,6 +25,6 @@ ON perm_entity BEGIN
END;
CREATE TRIGGER perm_info_update AFTER UPDATE
ON perm_info BEGIN
UPDATE perm_info SET updated_at=CURRENT_TIMESTAMP WHERE id=old.id;
UPDATE perm_info SET updated_at=CURRENT_TIMESTAMP WHERE entity_id=old.entity_id;
END;