4797-lilium-worker-notifications #1229
|
@ -1,4 +1,4 @@
|
|||
INSERT INTO `salix`.`ACL` (model,property,accessType,principalId)
|
||||
VALUES ('NotificationSubscription','*','*','employee');
|
||||
INSERT INTO `salix`.`ACL` (model,property,accessType,principalId)
|
||||
VALUES ('NotificationAcl','*','*','employee');
|
||||
VALUES
|
||||
('NotificationSubscription','*','*','employee'),
|
||||
pau marked this conversation as resolved
Outdated
|
||||
('NotificationAcl','*','READ','employee');
|
||||
|
|
|
@ -1,10 +1,4 @@
|
|||
CREATE OR REPLACE TABLE `util`.`notificationSubscription` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`notificationFk` int(11) NOT NULL,
|
||||
`userFk` int(10) unsigned NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `notificationSubscription_ibfk_1` (`notificationFk`),
|
||||
KEY `notificationSubscription_ibfk_2` (`userFk`),
|
||||
CONSTRAINT `notificationSubscription_ibfk_1` FOREIGN KEY (`notificationFk`) REFERENCES `notification` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
CONSTRAINT `notificationSubscription_ibfk_2` FOREIGN KEY (`userFk`) REFERENCES `account`.`user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
ALTER TABLE util.notificationSubscription
|
||||
pau marked this conversation as resolved
Outdated
alexm
commented
Has contemplat que se borren tots els registres de la taula? Has contemplat que se borren tots els registres de la taula?
|
||||
ADD Id int(11) auto_increment NULL,
|
||||
pau marked this conversation as resolved
Outdated
alexm
commented
id **id**
|
||||
DROP PRIMARY KEY,
|
||||
ADD CONSTRAINT PRIMARY KEY (Id);
|
||||
pau marked this conversation as resolved
Outdated
alexm
commented
id **id**
|
||||
|
|
|
@ -19726,10 +19726,9 @@ DROP TABLE IF EXISTS `notificationSubscription`;
|
|||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `notificationSubscription` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`notificationFk` int(11) NOT NULL,
|
||||
pau marked this conversation as resolved
Outdated
alexm
commented
Minúscula Minúscula
alexm
commented
Esto no debería estar en el changes también??? Esto no debería estar en el changes también???
|
||||
`userFk` int(10) unsigned NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
PRIMARY KEY (`notificationFk`,`userFk`),
|
||||
KEY `notificationSubscription_ibfk_1` (`notificationFk`),
|
||||
pau marked this conversation as resolved
Outdated
alexm
commented
Minúscula Minúscula
|
||||
KEY `notificationSubscription_ibfk_2` (`userFk`),
|
||||
pau marked this conversation as resolved
Outdated
alexm
commented
Hace falta añadir Hace falta añadir `KEY `notificationSubscription_ibfk_1` (`notificationFk`)` ?
|
||||
CONSTRAINT `notificationSubscription_ibfk_1` FOREIGN KEY (`notificationFk`) REFERENCES `notification` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
||||
|
|
Loading…
Reference in New Issue
INSERT INTO
salix
.ACL
(model,property,accessType,principalId)VALUES ('NotificationAcl','*','READ','employee');