From b6a8dab347c43e151abc48261239c307cd1fec19 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 31 Jan 2019 16:25:59 -0300 Subject: [PATCH] Bug 21890: DB updates This patch adds a new column to the categories table: 'reset_password' which is a boolean, and represents, well... that. The value itself is nullable. The idea is that OpacResetPassword governs the general behaviour, and this can be overriden at category-level. --- .../bug_21890_pwd_reset_by_category.perl | 14 ++++++++++++++ installer/data/mysql/kohastructure.sql | 1 + 2 files changed, 15 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug_21890_pwd_reset_by_category.perl diff --git a/installer/data/mysql/atomicupdate/bug_21890_pwd_reset_by_category.perl b/installer/data/mysql/atomicupdate/bug_21890_pwd_reset_by_category.perl new file mode 100644 index 0000000000..ecf8225f3e --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_21890_pwd_reset_by_category.perl @@ -0,0 +1,14 @@ +$DBversion = 'XXX'; +if( CheckVersion( $DBversion ) ) { + + if ( !column_exists( 'categories', 'reset_password' ) ) { + $dbh->do(q{ + ALTER TABLE categories + ADD COLUMN reset_password TINYINT(1) NULL DEFAULT NULL + AFTER checkprevcheckout + }); + } + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 21890 - Patron password reset by category)\n"; +} diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 89e71c94a5..674dd01352 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -318,6 +318,7 @@ CREATE TABLE `categories` ( -- this table shows information related to Koha patr `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 `default_privacy` ENUM( 'default', 'never', 'forever' ) NOT NULL DEFAULT 'default', -- Default privacy setting for this patron category `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'. + `reset_password` TINYINT(1) NULL DEFAULT NULL, -- if patrons of this category can do the password reset flow PRIMARY KEY (`categorycode`), UNIQUE KEY `categorycode` (`categorycode`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- 2.20.1