| Lines 322-330
          CREATE TABLE `categories` ( -- this table shows information related to Koha patr
      
      
        Link Here | 
        
          | 322 |   `BlockExpiredPatronOpacActions` tinyint(1) NOT NULL default '-1', -- wheither or not a patron of this category can renew books or place holds once their card has expired. 0 means they can, 1 means they cannot, -1 means use syspref BlockExpiredPatronOpacActions | 322 |   `BlockExpiredPatronOpacActions` tinyint(1) NOT NULL default '-1', -- wheither or not a patron of this category can renew books or place holds once their card has expired. 0 means they can, 1 means they cannot, -1 means use syspref BlockExpiredPatronOpacActions | 
        
          | 323 |   `default_privacy` ENUM( 'default', 'never', 'forever' ) NOT NULL DEFAULT 'default', -- Default privacy setting for this patron category | 323 |   `default_privacy` ENUM( 'default', 'never', 'forever' ) NOT NULL DEFAULT 'default', -- Default privacy setting for this patron category | 
        
          | 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 |   `canbeguarantee` tinyint(1) NOT NULL default '0', | 
        
          | 325 |   `reset_password` TINYINT(1) NULL DEFAULT NULL, -- if patrons of this category can do the password reset flow, | 326 |   `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 | 327 |   `change_password` TINYINT(1) NULL DEFAULT NULL, -- if patrons of this category can change their passwords in the OAPC | 
            
              | 327 |   `canbeguarantee` tinyint(1) NOT NULL default '0' |  |  | 
        
          | 328 |   PRIMARY KEY  (`categorycode`), | 328 |   PRIMARY KEY  (`categorycode`), | 
        
          | 329 |   UNIQUE KEY `categorycode` (`categorycode`) | 329 |   UNIQUE KEY `categorycode` (`categorycode`) | 
        
          | 330 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | 330 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |