HOR-935 Retirar las notificaciones Mobile del proceso de derivación y ejecutarlas asincronamente

up observations by QA
This commit is contained in:
Ronald Q
2016-06-02 11:27:55 -04:00
parent 012fa791f2
commit f20b5d0788
13 changed files with 1840 additions and 36 deletions

View File

@@ -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;