fix: refs 5919 apply version

This commit is contained in:
Jorge Penadés 2024-04-29 11:35:08 +02:00
parent 8adb52aac4
commit 0003779681
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ ALTER TABLE `vn`.`worker` DROP COLUMN `locker`;
CREATE TABLE `vn`.`locker` (
`id` int(100) auto_increment,
`code` varchar(10) DEFAULT NULL,
`gender` varchar(255) DEFAULT NULL,
`gender` ENUM('M','F') DEFAULT NULL,
`workerFk` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `code` (`code`),