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

(-)a/Koha/Schema/Result/LibraryGroup.pm (-3 / +10 lines)
Lines 53-58 __PACKAGE__->table("library_groups"); Link Here
53
  data_type: 'text'
53
  data_type: 'text'
54
  is_nullable: 1
54
  is_nullable: 1
55
55
56
=head2 ft_hide_patron_info
57
58
  data_type: 'tinyint'
59
  default_value: 0
60
  is_nullable: 0
61
56
=head2 created_on
62
=head2 created_on
57
63
58
  data_type: 'datetime'
64
  data_type: 'datetime'
Lines 78-83 __PACKAGE__->add_columns( Link Here
78
  { data_type => "varchar", is_nullable => 1, size => 100 },
84
  { data_type => "varchar", is_nullable => 1, size => 100 },
79
  "description",
85
  "description",
80
  { data_type => "text", is_nullable => 1 },
86
  { data_type => "text", is_nullable => 1 },
87
  "ft_hide_patron_info",
88
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
81
  "created_on",
89
  "created_on",
82
  {
90
  {
83
    data_type => "datetime",
91
    data_type => "datetime",
Lines 162-169 __PACKAGE__->belongs_to( Link Here
162
);
170
);
163
171
164
172
165
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-12-05 14:04:50
173
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-02 13:55:34
166
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:p4hmm+ciFgPOGlAMvNB6Yw
174
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1I6F77/TUDVzxGh0IxPkyQ
167
175
168
176
169
# You can replace this text with custom code or comments, and it will be preserved on regeneration
177
# You can replace this text with custom code or comments, and it will be preserved on regeneration
170
- 

Return to bug 20133