From 538072fd5c49fdcfae52dc221eeeb970a81cdf43 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Thu, 23 Jan 2020 17:44:14 +0000 Subject: [PATCH] Bug 24476: Add boolean for all TINYINT --- Koha/Schema/Result/Deletedborrower.pm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Koha/Schema/Result/Deletedborrower.pm b/Koha/Schema/Result/Deletedborrower.pm index 200c7e3b23..29e2b4a2d5 100644 --- a/Koha/Schema/Result/Deletedborrower.pm +++ b/Koha/Schema/Result/Deletedborrower.pm @@ -661,6 +661,15 @@ __PACKAGE__->add_columns( # Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-01-23 17:37:01 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7DGOgltcqZKLv6u1BOnouw +__PACKAGE__->add_columns( + '+anonymized' => { is_boolean => 1 }, + '+lost' => { is_boolean => 1 }, + '+gonenoaddress' => { is_boolean => 1 }, + '+privacy_guarantor_fines' => { is_boolean => 1 }, + '+autorenewal' => { is_boolean => 1 } +); + + sub koha_objects_class { 'Koha::Old::Patrons'; } -- 2.11.0