Lines 327-332
CREATE TABLE `categories` ( -- this table shows information related to Koha patr
Link Here
|
327 |
`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'. |
327 |
`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'. |
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 |
`min_password_length` smallint(6) NULL DEFAULT NULL, -- set minimum password length for patrons in this category |
331 |
`require_strong_password` TINYINT(1) NULL DEFAULT NULL, -- set required password strength for patrons in this category |
330 |
PRIMARY KEY (`categorycode`), |
332 |
PRIMARY KEY (`categorycode`), |
331 |
UNIQUE KEY `categorycode` (`categorycode`) |
333 |
UNIQUE KEY `categorycode` (`categorycode`) |
332 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
334 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
333 |
- |
|
|