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

(-)a/Koha/Schema/Result/Branch.pm (-6 / +5 lines)
Lines 206-218 branch specific javascript for the OPAC Link Here
206
206
207
branch specific css for the OPAC
207
branch specific css for the OPAC
208
208
209
=head2 branchcolor
209
=head2 library_color
210
210
211
  data_type: 'varchar'
211
  data_type: 'varchar'
212
  is_nullable: 1
212
  is_nullable: 1
213
  size: 16
213
  size: 16
214
214
215
branch specific color
215
library specific color
216
216
217
=cut
217
=cut
218
218
Lines 267-273 __PACKAGE__->add_columns( Link Here
267
  { data_type => "longtext", is_nullable => 1 },
267
  { data_type => "longtext", is_nullable => 1 },
268
  "opacusercss",
268
  "opacusercss",
269
  { data_type => "longtext", is_nullable => 1 },
269
  { data_type => "longtext", is_nullable => 1 },
270
  "branchcolor",
270
  "library_color",
271
  { data_type => "varchar", is_nullable => 1, size => 16 },
271
  { data_type => "varchar", is_nullable => 1, size => 16 },
272
);
272
);
273
273
Lines 1006-1013 __PACKAGE__->has_many( Link Here
1006
);
1006
);
1007
1007
1008
1008
1009
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-06-07 16:19:19
1009
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-12-30 18:00:37
1010
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:o4mDVGwBMW9RsoohPU5EZQ
1010
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1pdWQr3LWzmO4yk61f3eHw
1011
1011
1012
__PACKAGE__->add_columns(
1012
__PACKAGE__->add_columns(
1013
    '+pickup_location' => { is_boolean => 1 },
1013
    '+pickup_location' => { is_boolean => 1 },
1014
- 

Return to bug 37054