From 1271171695a6ed9c7743e5af3a2a9f01291efcfe Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 17 Oct 2024 09:21:10 +0200 Subject: [PATCH] Bug 33484: Add new columns as boolean in schema file Signed-off-by: Pedro Amorim Signed-off-by: Jonathan Druart Signed-off-by: Martin Renvoize Signed-off-by: Katrin Fischer --- Koha/Schema/Result/TablesSetting.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Koha/Schema/Result/TablesSetting.pm b/Koha/Schema/Result/TablesSetting.pm index 9b7bc22c9b..a50d1fa858 100644 --- a/Koha/Schema/Result/TablesSetting.pm +++ b/Koha/Schema/Result/TablesSetting.pm @@ -103,6 +103,9 @@ __PACKAGE__->set_primary_key("module", "page", "tablename"); # Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-03 09:24:14 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+IhbaYydX2NWPTXYCazrWg +__PACKAGE__->add_columns( + '+default_save_state' => { is_boolean => 1 }, + '+default_save_state_search' => { is_boolean => 1 }, +); -# You can replace this text with custom code or comments, and it will be preserved on regeneration 1; -- 2.39.5