8315-devToTest #3313

Merged
alexm merged 228 commits from 8315-devToTest into test 2024-12-18 10:30:39 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 48064d6393 - Show all commits

View File

@ -2,7 +2,7 @@ CREATE TABLE IF NOT EXISTS `vn`.`sim` (
`code` VARCHAR(25) COMMENT 'No se ha puesto BIGINT por incompatibilidad con Access',
`line` VARCHAR(15) NOT NULL CHECK (`line` REGEXP '^[0-9]+$'),
`ext` INT(4) NOT NULL,
`pin` CHAR(4) NOT NULL CHECK (`pin` REGEXP '^[0-9]+$'),
`pin` VARCHAR(4) NOT NULL CHECK (`pin` REGEXP '^[0-9]+$'),
`puk` INT(15) NOT NULL,
PRIMARY KEY (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;