View | Details | Raw Unified | Return to bug 20256
Collapse All | Expand All

(-)a/Koha/Schema/Result/LibraryGroup.pm (-3 / +10 lines)
Lines 59-64 __PACKAGE__->table("library_groups"); Link Here
59
  default_value: 0
59
  default_value: 0
60
  is_nullable: 0
60
  is_nullable: 0
61
61
62
=head2 ft_limit_item_editing
63
64
  data_type: 'tinyint'
65
  default_value: 0
66
  is_nullable: 0
67
62
=head2 ft_search_groups_opac
68
=head2 ft_search_groups_opac
63
69
64
  data_type: 'tinyint'
70
  data_type: 'tinyint'
Lines 99-104 __PACKAGE__->add_columns( Link Here
99
  { data_type => "mediumtext", is_nullable => 1 },
105
  { data_type => "mediumtext", is_nullable => 1 },
100
  "ft_hide_patron_info",
106
  "ft_hide_patron_info",
101
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
107
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
108
  "ft_limit_item_editing",
109
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
102
  "ft_search_groups_opac",
110
  "ft_search_groups_opac",
103
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
111
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
104
  "ft_search_groups_staff",
112
  "ft_search_groups_staff",
Lines 202-209 __PACKAGE__->belongs_to( Link Here
202
);
210
);
203
211
204
212
205
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:54
213
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-03-27 17:44:12
206
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8hvTh2lWoG/MpfSdq4kx5Q
214
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:m6cApjNi+56tM7JmFU+eMQ
207
215
208
216
209
# You can replace this text with custom code or comments, and it will be preserved on regeneration
217
# You can replace this text with custom code or comments, and it will be preserved on regeneration
210
- 

Return to bug 20256