fix: refs #7986 fix model

This commit is contained in:
Carlos Satorres 2024-10-08 16:06:38 +02:00
parent b4dc5276dd
commit 39e808bca7
2 changed files with 14 additions and 9 deletions

View File

@ -1,6 +1,3 @@
ALTER TABLE `vn`.`worker`
ADD COLUMN `motoFk` INT(11) UNSIGNED DEFAULT NULL;
ALTER TABLE `vn`.`worker`
ADD CONSTRAINT `worker_machineFk` FOREIGN KEY (`motoFk`) REFERENCES `machine` (`id`) ON UPDATE CASCADE ON DELETE SET NULL;
ALTER TABLE `vn`.`operator`
ADD COLUMN `machineFk` int(11) DEFAULT NULL,
ADD CONSTRAINT `operator_machine_FK` FOREIGN KEY (`machineFk`) REFERENCES `vn`.`machine` (`id`) ON DELETE SET NULL ON UPDATE CASCADE;

View File

@ -30,7 +30,10 @@
"isOnReservationMode": {
"type": "boolean",
"required": true
}
},
"machineFk": {
"type": "number"
}
},
"relations": {
"sector": {
@ -53,6 +56,11 @@
"model": "ItemPackingType",
"foreignKey": "itemPackingTypeFk",
"primaryKey": "code"
}
},
"machine": {
"type": "belongsTo",
"model": "Machine",
"foreignKey": "machineFk"
}
}
}
}