Clarkson/flyway/sql/V1.29__Create_Procedure_User_PromoteById.sql
Josh Stark 16254ab78e Demotion/Promotion
- Admins can promote/demote other users
2018-08-08 17:39:13 +01:00

17 lines
190 B
SQL

DELIMITER $$
CREATE PROCEDURE `User_PromoteById`
(
in_userId VARCHAR(36)
)
BEGIN
UPDATE
`Users`
SET
`admin` = 1
WHERE
`id` = in_userId;
END$$