From 5d95be1892f17f71a770b7d2bf8e4dc4eef7f3ab Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 6 Feb 2023 10:57:37 +0000 Subject: [PATCH] Bug 31028: (follow-up) Mark public as boolean Signed-off-by: Kyle M Hall --- Koha/Schema/Result/TicketUpdate.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Koha/Schema/Result/TicketUpdate.pm b/Koha/Schema/Result/TicketUpdate.pm index edbc984ee4..c778ee32c0 100644 --- a/Koha/Schema/Result/TicketUpdate.pm +++ b/Koha/Schema/Result/TicketUpdate.pm @@ -147,6 +147,7 @@ __PACKAGE__->belongs_to( # Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-24 18:31:28 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8YG3jhlqbHWptc28pvBmrg +__PACKAGE__->add_columns( '+public' => { is_boolean => 1 }, ); # You can replace this text with custom code or comments, and it will be preserved on regeneration 1; -- 2.30.2