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