From ca0ca1b99e01baa913e2b5c56a87b529d8819bab Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 2 Feb 2018 14:21:26 -0300 Subject: [PATCH] Bug 20133: DBIC Schema changes Signed-off-by: Jonathan Druart --- Koha/Schema/Result/LibraryGroup.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/LibraryGroup.pm b/Koha/Schema/Result/LibraryGroup.pm index 9e4d53d561..97ec98d2e7 100644 --- a/Koha/Schema/Result/LibraryGroup.pm +++ b/Koha/Schema/Result/LibraryGroup.pm @@ -53,6 +53,12 @@ __PACKAGE__->table("library_groups"); data_type: 'text' is_nullable: 1 +=head2 ft_hide_patron_info + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + =head2 created_on data_type: 'timestamp' @@ -79,6 +85,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 100 }, "description", { data_type => "text", is_nullable => 1 }, + "ft_hide_patron_info", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "created_on", { data_type => "timestamp", @@ -178,8 +186,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-09 16:27:08 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7JN93utlgFEyQhE9BMx1QQ +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-09 16:32:32 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4nPUJUWLIqttCGWm7N0txg # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.39.2