This commit is contained in:
ivan-pelly
2026-04-19 14:09:30 -07:00
parent 09673ab53c
commit cd204e4d10
33 changed files with 1521 additions and 11 deletions
+12
View File
@@ -0,0 +1,12 @@
DELIMITER ;;
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Role_GetAll`()
BEGIN
SELECT
id_role,
name,
internal_name,
description
FROM role
ORDER BY name;
END;;
DELIMITER ;