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

(-)a/Koha/Schema/Result/LibraryGroup.pm (-3 / +18 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_search_groups_opac
63
64
  data_type: 'tinyint'
65
  default_value: 0
66
  is_nullable: 0
67
68
=head2 ft_search_groups_staff
69
70
  data_type: 'tinyint'
71
  default_value: 0
72
  is_nullable: 0
73
62
=head2 created_on
74
=head2 created_on
63
75
64
  data_type: 'timestamp'
76
  data_type: 'timestamp'
Lines 87-92 __PACKAGE__->add_columns( Link Here
87
  { data_type => "text", is_nullable => 1 },
99
  { data_type => "text", is_nullable => 1 },
88
  "ft_hide_patron_info",
100
  "ft_hide_patron_info",
89
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
101
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
102
  "ft_search_groups_opac",
103
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
104
  "ft_search_groups_staff",
105
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
90
  "created_on",
106
  "created_on",
91
  {
107
  {
92
    data_type => "timestamp",
108
    data_type => "timestamp",
Lines 186-193 __PACKAGE__->belongs_to( Link Here
186
);
202
);
187
203
188
204
189
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-09 16:32:32
205
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-09 16:35:09
190
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4nPUJUWLIqttCGWm7N0txg
206
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Hy7zXPiHGs832yvEBIO6Uw
191
207
192
208
193
# You can replace this text with custom code or comments, and it will be preserved on regeneration
209
# You can replace this text with custom code or comments, and it will be preserved on regeneration
194
- 

Return to bug 20157