From fc0c6a801cfe3c54707757663e4e6bafc8ca0c67 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 7 Feb 2018 19:48:56 +0000 Subject: [PATCH] Bug 20157 - Update Schema Signed-off-by: Jonathan Druart --- Koha/Schema/Result/LibraryGroup.pm | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/LibraryGroup.pm b/Koha/Schema/Result/LibraryGroup.pm index 97ec98d2e7..972ed43e13 100644 --- a/Koha/Schema/Result/LibraryGroup.pm +++ b/Koha/Schema/Result/LibraryGroup.pm @@ -59,6 +59,18 @@ __PACKAGE__->table("library_groups"); default_value: 0 is_nullable: 0 +=head2 ft_search_groups_opac + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + +=head2 ft_search_groups_staff + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + =head2 created_on data_type: 'timestamp' @@ -87,6 +99,10 @@ __PACKAGE__->add_columns( { data_type => "text", is_nullable => 1 }, "ft_hide_patron_info", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "ft_search_groups_opac", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "ft_search_groups_staff", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "created_on", { data_type => "timestamp", @@ -186,8 +202,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-09 16:32:32 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4nPUJUWLIqttCGWm7N0txg +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-09 16:35:09 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Hy7zXPiHGs832yvEBIO6Uw # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.11.0