Lines 1621-1626
CREATE TABLE `categories` (
Link Here
|
1621 |
`min_password_length` smallint(6) DEFAULT NULL COMMENT 'set minimum password length for patrons in this category', |
1621 |
`min_password_length` smallint(6) DEFAULT NULL COMMENT 'set minimum password length for patrons in this category', |
1622 |
`require_strong_password` tinyint(1) DEFAULT NULL COMMENT 'set required password strength for patrons in this category', |
1622 |
`require_strong_password` tinyint(1) DEFAULT NULL COMMENT 'set required password strength for patrons in this category', |
1623 |
`exclude_from_local_holds_priority` tinyint(1) DEFAULT NULL COMMENT 'Exclude patrons of this category from local holds priority', |
1623 |
`exclude_from_local_holds_priority` tinyint(1) DEFAULT NULL COMMENT 'Exclude patrons of this category from local holds priority', |
|
|
1624 |
`article_request_limit` tinyint(4) DEFAULT NULL COMMENT 'Limit article scan requests per day', |
1624 |
PRIMARY KEY (`categorycode`), |
1625 |
PRIMARY KEY (`categorycode`), |
1625 |
UNIQUE KEY `categorycode` (`categorycode`) |
1626 |
UNIQUE KEY `categorycode` (`categorycode`) |
1626 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1627 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1627 |
- |
|
|