From 9e5fb7752e768f34a73c10dc19d898e6ee8e1f1c 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 --- 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 9b7bc22c9b9..a50d1fa8586 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.34.1