Lines 328-333
CREATE TABLE `categories` ( -- this table shows information related to Koha patr
Link Here
|
328 |
`reset_password` TINYINT(1) NULL DEFAULT NULL, -- if patrons of this category can do the password reset flow, |
328 |
`reset_password` TINYINT(1) NULL DEFAULT NULL, -- if patrons of this category can do the password reset flow, |
329 |
`change_password` TINYINT(1) NULL DEFAULT NULL, -- if patrons of this category can change their passwords in the OAPC |
329 |
`change_password` TINYINT(1) NULL DEFAULT NULL, -- if patrons of this category can change their passwords in the OAPC |
330 |
`exclude_from_local_holds_priority` tinyint(1) default NULL, -- Exclude patrons of this category from local holds priority |
330 |
`exclude_from_local_holds_priority` tinyint(1) default NULL, -- Exclude patrons of this category from local holds priority |
|
|
331 |
`min_password_length` smallint(6) NULL DEFAULT NULL, -- set minimum password length for patrons in this category |
332 |
`require_strong_password` TINYINT(1) NULL DEFAULT NULL, -- set required password strength for patrons in this category |
331 |
PRIMARY KEY (`categorycode`), |
333 |
PRIMARY KEY (`categorycode`), |
332 |
UNIQUE KEY `categorycode` (`categorycode`) |
334 |
UNIQUE KEY `categorycode` (`categorycode`) |
333 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
335 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
334 |
- |
|
|