PMCORE-3050 Rest Services - CRUD My task column settings

This commit is contained in:
Roly Rudy Gutierrez Pinto
2021-07-07 10:35:28 -04:00
parent 759075c979
commit 12dff0c33e
10 changed files with 1618 additions and 0 deletions

View File

@@ -3388,5 +3388,19 @@ CREATE TABLE `USER_EXTENDED_ATTRIBUTES`
`UEA_DATE_CREATE` DATETIME,
PRIMARY KEY (`UEA_ID`)
)ENGINE=InnoDB DEFAULT CHARSET='utf8';
#-----------------------------------------------------------------------------
#-- USER_CONFIG
#-----------------------------------------------------------------------------
DROP TABLE IF EXISTS `USER_CONFIG`;
CREATE TABLE `USER_CONFIG`
(
`USR_ID` BIGINT(20) NOT NULL,
`USC_NAME` VARCHAR(255) NOT NULL,
`USC_SETTING` MEDIUMTEXT NOT NULL,
PRIMARY KEY (`USR_ID`,`USC_NAME`)
)ENGINE=InnoDB DEFAULT CHARSET='utf8';
# This restores the fkey checks, after having unset them earlier
SET FOREIGN_KEY_CHECKS = 1;