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

(-)a/Koha/Schema/Result/LibraryGroup.pm (-3 / +12 lines)
Lines 103-108 Use this group for opac side search groups Link Here
103
103
104
Use this group to identify libraries as pick up location for holds
104
Use this group to identify libraries as pick up location for holds
105
105
106
=head2 ft_local_float_group
107
108
  data_type: 'tinyint'
109
  default_value: 0
110
  is_nullable: 0
111
112
Use this group to identify libraries as part of float group
113
106
=head2 created_on
114
=head2 created_on
107
115
108
  data_type: 'timestamp'
116
  data_type: 'timestamp'
Lines 143-148 __PACKAGE__->add_columns( Link Here
143
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
151
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
144
  "ft_local_hold_group",
152
  "ft_local_hold_group",
145
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
153
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
154
  "ft_local_float_group",
155
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
146
  "created_on",
156
  "created_on",
147
  {
157
  {
148
    data_type => "timestamp",
158
    data_type => "timestamp",
Lines 256-263 __PACKAGE__->belongs_to( Link Here
256
);
266
);
257
267
258
268
259
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-02-01 19:02:36
269
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-26 13:40:04
260
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:G6Q4trvkAM/xH1skCv+B6g
270
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Xv3d1OfYdkaPaopTFVjgxQ
261
271
262
sub koha_object_class {
272
sub koha_object_class {
263
    'Koha::Library::Group';
273
    'Koha::Library::Group';
264
- 

Return to bug 9525