feat: refs #7006 itemTypeLog created #3093

Merged
guillermo merged 5 commits from 7006-itemTypeLog into dev 2024-10-25 12:32:22 +00:00
3 changed files with 7 additions and 1 deletions
Showing only changes of commit 6c62172633 - Show all commits

View File

@ -22,3 +22,6 @@ CREATE TABLE `vn`.`itemTypeLog` (
KEY `itemTypeLog_creationDate_IDX` (`creationDate` DESC) USING BTREE,
CONSTRAINT `itemTypeLogUserFk` FOREIGN KEY (`userFk`) REFERENCES `account`.`user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci `PAGE_COMPRESSED`=1;
INSERT IGNORE INTO salix.ACL (model,property,principalId)
VALUES ('ItemTypeLog','*','employee');
guillermo marked this conversation as resolved Outdated
Outdated
Review

Donali el concret, volem llevar tots els *
En esta pagina pots vore les equivalencies https://loopback.io/doc/en/lb2/Controlling-data-access.html
(esta baix de tot)

Donali el concret, volem llevar tots els * En esta pagina pots vore les equivalencies https://loopback.io/doc/en/lb2/Controlling-data-access.html (esta baix de tot)

View File

@ -47,6 +47,9 @@
"ItemType": {
"dataSource": "vn"
},
"ItemTypeLog": {
"dataSource": "vn"
},
"ItemTypeTag": {
"dataSource": "vn"
},

View File

@ -3,7 +3,7 @@
"base": "Log",
"options": {
"mysql": {
"table": "ItemTypeLog"
"table": "itemTypeLog"
}
}
}