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

(-)a/Koha/Schema/Result/Branch.pm (-12 / +2 lines)
Lines 160-172 the IP address for your library or branch Link Here
160
160
161
notes related to your library or branch
161
notes related to your library or branch
162
162
163
=head2 opac_info
164
165
  data_type: 'mediumtext'
166
  is_nullable: 1
167
168
HTML that displays in OPAC
169
170
=head2 geolocation
163
=head2 geolocation
171
164
172
  data_type: 'varchar'
165
  data_type: 'varchar'
Lines 240-247 __PACKAGE__->add_columns( Link Here
240
  { data_type => "varchar", is_nullable => 1, size => 15 },
233
  { data_type => "varchar", is_nullable => 1, size => 15 },
241
  "branchnotes",
234
  "branchnotes",
242
  { data_type => "longtext", is_nullable => 1 },
235
  { data_type => "longtext", is_nullable => 1 },
243
  "opac_info",
244
  { data_type => "mediumtext", is_nullable => 1 },
245
  "geolocation",
236
  "geolocation",
246
  { data_type => "varchar", is_nullable => 1, size => 255 },
237
  { data_type => "varchar", is_nullable => 1, size => 255 },
247
  "marcorgcode",
238
  "marcorgcode",
Lines 912-919 __PACKAGE__->has_many( Link Here
912
);
903
);
913
904
914
905
915
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-06-27 11:58:43
906
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-08-04 11:51:01
916
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1m1v0sml/1gBHxAkQl8BaA
907
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9y3OsniMUF5gCVn4Xfyw3Q
917
908
918
__PACKAGE__->add_columns(
909
__PACKAGE__->add_columns(
919
    '+pickup_location' => { is_boolean => 1 },
910
    '+pickup_location' => { is_boolean => 1 },
920
- 

Return to bug 29144