From b53eeb01f59a75f7383c291eab61d081d1f9532a Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 4 Jan 2021 14:23:52 +0000 Subject: [PATCH] Bug 22785: Update Schema for boolean Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Ben Daeuber --- Koha/Schema/Result/ImportRecordMatch.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Koha/Schema/Result/ImportRecordMatch.pm b/Koha/Schema/Result/ImportRecordMatch.pm index c528807cd0..83143a0e1f 100644 --- a/Koha/Schema/Result/ImportRecordMatch.pm +++ b/Koha/Schema/Result/ImportRecordMatch.pm @@ -101,6 +101,10 @@ __PACKAGE__->belongs_to( # Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-20 14:40:50 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+aVZQFY/Tb1N6C6GgMwlig +__PACKAGE__->add_columns( + '+chosen' => { is_boolean => 1 }, +); + sub koha_object_class { 'Koha::Import::Record::Match'; } -- 2.30.2