From 759c6947f63157589d5071d0bdea78142fc5781b Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 21 Dec 2023 09:48:17 +0000 Subject: [PATCH] Bug 35625: Add boolean flag to schema --- Koha/Schema/Result/AdditionalField.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Koha/Schema/Result/AdditionalField.pm b/Koha/Schema/Result/AdditionalField.pm index 44071834fbf..5d8697be7a9 100644 --- a/Koha/Schema/Result/AdditionalField.pm +++ b/Koha/Schema/Result/AdditionalField.pm @@ -176,6 +176,9 @@ __PACKAGE__->has_many( # Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-12-21 09:19:49 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zaNlZ+DHrKbHEALlQbOh8w +__PACKAGE__->add_columns( + '+is_system' => { is_boolean => 1 }, +); # You can replace this text with custom code or comments, and it will be preserved on regeneration 1; -- 2.43.0