From 76d22780ede623ee33de32ff63c7f06dfda2b992 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 23 Jun 2022 13:48:52 -0300 Subject: [PATCH] Bug 12446: (follow-up) Fix patron categories sample data The can_be_guarantee column was added to the sample data, but not to all rows so it was being silently skipped by the install process. Signed-off-by: Tomas Cohen Arazi --- installer/data/mysql/en/optional/patron_categories.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/installer/data/mysql/en/optional/patron_categories.yml b/installer/data/mysql/en/optional/patron_categories.yml index c967038c64..3fb0a13ef8 100644 --- a/installer/data/mysql/en/optional/patron_categories.yml +++ b/installer/data/mysql/en/optional/patron_categories.yml @@ -59,6 +59,7 @@ tables: issuelimit: ~ reservefee: '0.000000' category_type: 'A' + can_be_guarantee: 0 - categorycode: 'ST' description: 'Student' @@ -72,6 +73,7 @@ tables: issuelimit: ~ reservefee: '0.000000' category_type: 'A' + can_be_guarantee: 0 - categorycode: 'HB' description: 'Home Bound' @@ -85,6 +87,7 @@ tables: issuelimit: ~ reservefee: '0.000000' category_type: 'A' + can_be_guarantee: 0 # Children - categorycode: 'K' @@ -171,6 +174,7 @@ tables: issuelimit: ~ reservefee: '0.000000' category_type: 'I' + can_be_guarantee: 0 - categorycode: 'SC' description: 'School' @@ -184,6 +188,7 @@ tables: issuelimit: ~ reservefee: '0.000000' category_type: 'I' + can_be_guarantee: 0 - categorycode: 'L' description: 'Library' @@ -197,6 +202,7 @@ tables: issuelimit: ~ reservefee: '0.000000' category_type: 'I' + can_be_guarantee: 0 # Staff - categorycode: 'S' @@ -211,3 +217,4 @@ tables: issuelimit: ~ reservefee: '0.000000' category_type: 'S' + can_be_guarantee: 0 -- 2.20.1