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

(-)a/Koha/Schema/Result/Branch.pm (-3 / +20 lines)
Lines 192-197 the ability to act as a pickup location Link Here
192
192
193
whether this library should show in the opac
193
whether this library should show in the opac
194
194
195
=head2 opacuserjs
196
197
  data_type: 'longtext'
198
  is_nullable: 1
199
200
branch specific javascript for the OPAC
201
202
=head2 opacusercss
203
204
  data_type: 'longtext'
205
  is_nullable: 1
206
207
branch specific css for the OPAC
208
195
=cut
209
=cut
196
210
197
__PACKAGE__->add_columns(
211
__PACKAGE__->add_columns(
Lines 241-246 __PACKAGE__->add_columns( Link Here
241
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
255
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
242
  "public",
256
  "public",
243
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
257
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
258
  "opacuserjs",
259
  { data_type => "longtext", is_nullable => 1 },
260
  "opacusercss",
261
  { data_type => "longtext", is_nullable => 1 },
244
);
262
);
245
263
246
=head1 PRIMARY KEY
264
=head1 PRIMARY KEY
Lines 918-925 __PACKAGE__->has_many( Link Here
918
);
936
);
919
937
920
938
921
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-11-08 17:35:26
939
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-05 13:59:09
922
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QPqXuEigMeIBb9NKMSkrNw
940
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HIFh/XIWUlQIs2SJMW/yVQ
923
941
924
__PACKAGE__->add_columns(
942
__PACKAGE__->add_columns(
925
    '+pickup_location' => { is_boolean => 1 },
943
    '+pickup_location' => { is_boolean => 1 },
926
- 

Return to bug 32721