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

(-)a/Koha/Schema/Result/LibraryGroup.pm (-3 / +10 lines)
Lines 71-76 __PACKAGE__->table("library_groups"); Link Here
71
  default_value: 0
71
  default_value: 0
72
  is_nullable: 0
72
  is_nullable: 0
73
73
74
=head2 ft_local_hold_group
75
76
  data_type: 'tinyint'
77
  default_value: 0
78
  is_nullable: 0
79
74
=head2 created_on
80
=head2 created_on
75
81
76
  data_type: 'timestamp'
82
  data_type: 'timestamp'
Lines 103-108 __PACKAGE__->add_columns( Link Here
103
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
109
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
104
  "ft_search_groups_staff",
110
  "ft_search_groups_staff",
105
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
111
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
112
  "ft_local_hold_group",
113
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
106
  "created_on",
114
  "created_on",
107
  {
115
  {
108
    data_type => "timestamp",
116
    data_type => "timestamp",
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-07-03 22:28:33
206
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8hvTh2lWoG/MpfSdq4kx5Q
214
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mJMYVtlB3JfqMEmNa0SWdg
207
215
208
sub koha_object_class {
216
sub koha_object_class {
209
    'Koha::Library::Group';
217
    'Koha::Library::Group';
210
- 

Return to bug 22284