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

(-)a/Koha/Schema/Result/Branch.pm (-3 / +12 lines)
Lines 206-211 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
210
211
  data_type: 'varchar'
212
  is_nullable: 1
213
  size: 16
214
215
branch specific color
216
209
=cut
217
=cut
210
218
211
__PACKAGE__->add_columns(
219
__PACKAGE__->add_columns(
Lines 259-264 __PACKAGE__->add_columns( Link Here
259
  { data_type => "longtext", is_nullable => 1 },
267
  { data_type => "longtext", is_nullable => 1 },
260
  "opacusercss",
268
  "opacusercss",
261
  { data_type => "longtext", is_nullable => 1 },
269
  { data_type => "longtext", is_nullable => 1 },
270
  "branchcolor",
271
  { data_type => "varchar", is_nullable => 1, size => 16 },
262
);
272
);
263
273
264
=head1 PRIMARY KEY
274
=head1 PRIMARY KEY
Lines 996-1003 __PACKAGE__->has_many( Link Here
996
);
1006
);
997
1007
998
1008
999
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-05-03 13:13:25
1009
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-06-07 16:19:19
1000
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HiH1QNlDqKcq9GeM85Pu0A
1010
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:o4mDVGwBMW9RsoohPU5EZQ
1001
1011
1002
__PACKAGE__->add_columns(
1012
__PACKAGE__->add_columns(
1003
    '+pickup_location' => { is_boolean => 1 },
1013
    '+pickup_location' => { is_boolean => 1 },
1004
- 

Return to bug 37054