Lines 324-329
CREATE TABLE `categories` ( -- this table shows information related to Koha patr
Link Here
|
324 |
`checkprevcheckout` varchar(7) NOT NULL default 'inherit', -- produce a warning for this patron category if this item has previously been checked out to this patron if 'yes', not if 'no', defer to syspref setting if 'inherit'. |
324 |
`checkprevcheckout` varchar(7) NOT NULL default 'inherit', -- produce a warning for this patron category if this item has previously been checked out to this patron if 'yes', not if 'no', defer to syspref setting if 'inherit'. |
325 |
`reset_password` TINYINT(1) NULL DEFAULT NULL, -- if patrons of this category can do the password reset flow, |
325 |
`reset_password` TINYINT(1) NULL DEFAULT NULL, -- if patrons of this category can do the password reset flow, |
326 |
`change_password` TINYINT(1) NULL DEFAULT NULL, -- if patrons of this category can change their passwords in the OAPC |
326 |
`change_password` TINYINT(1) NULL DEFAULT NULL, -- if patrons of this category can change their passwords in the OAPC |
|
|
327 |
`min_password_length` smallint(6) NULL DEFAULT NULL, -- set minimum password length for patrons in this category |
328 |
`require_strong_password` TINYINT(1) NULL DEFAULT NULL, -- set required password strength for patrons in this category |
327 |
PRIMARY KEY (`categorycode`), |
329 |
PRIMARY KEY (`categorycode`), |
328 |
UNIQUE KEY `categorycode` (`categorycode`) |
330 |
UNIQUE KEY `categorycode` (`categorycode`) |
329 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
331 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
330 |
- |
|
|