6567-cambiar-articulos #1966

Merged
jgallego merged 5 commits from 6567-cambiar-articulos into dev 2024-02-01 14:47:29 +00:00
1 changed files with 10 additions and 1 deletions
Showing only changes of commit 582359f058 - Show all commits

View File

@ -1,5 +1,14 @@
CREATE OR REPLACE DEFINER=`root`@`localhost` PROCEDURE `vn`.`sale_replaceItem`() BEGIN END;
GRANT EXECUTE ON PROCEDURE `vn`.`sale_replaceItem` TO `employee`;
DELIMITER $$
CREATE OR REPLACE DEFINER=`root`@`localhost` FUNCTION `vn`.`worker_isInDepartment`()
RETURNS int(11)
DETERMINISTIC
BEGIN
RETURN 1;
END$$
DELIMITER ;
GRANT EXECUTE ON FUNCTION `vn`.`worker_isInDepartment` TO `employee`;
FLUSH PRIVILEGES;