7986-workerMoto #3095

Merged
carlossa merged 7 commits from 7986-workerMoto into dev 2024-10-18 07:24:50 +00:00
2 changed files with 14 additions and 9 deletions
Showing only changes of commit 39e808bca7 - Show all commits

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,6 +30,9 @@
"isOnReservationMode": {
"type": "boolean",
"required": true
},
"machineFk": {
"type": "number"
}
},
"relations": {
@ -53,6 +56,11 @@
"model": "ItemPackingType",
"foreignKey": "itemPackingTypeFk",
"primaryKey": "code"
},
"machine": {
"type": "belongsTo",
"model": "Machine",
"foreignKey": "machineFk"
}
}
}