From e4883afc7c10b9506e7dc49e9f8a9a236a603b86 Mon Sep 17 00:00:00 2001 From: carlosjr Date: Mon, 20 Jun 2022 13:28:49 +0200 Subject: [PATCH] removed deprecated procedures and functions from Account --- db/changes/10480-june/00-deprecations.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 db/changes/10480-june/00-deprecations.sql diff --git a/db/changes/10480-june/00-deprecations.sql b/db/changes/10480-june/00-deprecations.sql new file mode 100644 index 000000000..68becd13e --- /dev/null +++ b/db/changes/10480-june/00-deprecations.sql @@ -0,0 +1,13 @@ +DROP FUNCTION `account`.`userGetId`; +DROP FUNCTION `account`.`myUserGetName`; +DROP FUNCTION `account`.`myUserGetId`; +DROP FUNCTION `account`.`myUserHasRole`; +DROP FUNCTION `account`.`myUserHasRoleId`; +DROP FUNCTION `account`.`userGetName`; +DROP FUNCTION `account`.`userHasRole`; +DROP FUNCTION `account`.`userHasRoleId`; +DROP PROCEDURE `account`.`myUserLogout`; +DROP PROCEDURE `account`.`userLogin`; +DROP PROCEDURE `account`.`userLoginWithKey`; +DROP PROCEDURE `account`.`userLoginWithName`; +DROP PROCEDURE `account`.`userSetPassword`; \ No newline at end of file