HOR-935 Retirar las notificaciones Mobile del proceso de derivación y ejecutarlas asincronamente
up observations by QA
This commit is contained in:
@@ -2971,4 +2971,19 @@ CREATE TABLE `GMAIL_RELABELING` (
|
||||
|
||||
# This restores the fkey checks, after having unset them earlier
|
||||
|
||||
DROP TABLE IF EXISTS `NOTIFICATION_QUEUE`;
|
||||
|
||||
CREATE TABLE `NOTIFICATION_QUEUE`
|
||||
(
|
||||
`NOT_UID` VARCHAR(32) NOT NULL,
|
||||
`DEV_TYPE` VARCHAR(50) NOT NULL,
|
||||
`DEV_UID` MEDIUMTEXT NOT NULL,
|
||||
`NOT_MSG` MEDIUMTEXT NOT NULL,
|
||||
`NOT_DATA` MEDIUMTEXT NOT NULL,
|
||||
`NOT_STATUS` VARCHAR(150) NOT NULL,
|
||||
`NOT_SEND_DATE` DATETIME NOT NULL,
|
||||
PRIMARY KEY (`NOT_UID`),
|
||||
KEY `indexNotStatus`(`NOT_STATUS`)
|
||||
)ENGINE=InnoDB ;
|
||||
# This restores the fkey checks, after having unset them earlier
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
|
||||
Reference in New Issue
Block a user