@@ -, +, @@ --- Koha/Schema/Result/LibraryGroup.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/LibraryGroup.pm +++ a/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: 'datetime' @@ -78,6 +84,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 => "datetime", @@ -162,8 +170,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-12-05 14:04:50 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:p4hmm+ciFgPOGlAMvNB6Yw +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-02 13:55:34 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1I6F77/TUDVzxGh0IxPkyQ # You can replace this text with custom code or comments, and it will be preserved on regeneration --