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

(-)a/Koha/Schema/Result/Branch.pm (-2 / +17 lines)
Lines 473-478 __PACKAGE__->has_many( Link Here
473
  { cascade_copy => 0, cascade_delete => 0 },
473
  { cascade_copy => 0, cascade_delete => 0 },
474
);
474
);
475
475
476
=head2 configurations
477
478
Type: has_many
479
480
Related object: L<Koha::Schema::Result::Configuration>
481
482
=cut
483
484
__PACKAGE__->has_many(
485
  "configurations",
486
  "Koha::Schema::Result::Configuration",
487
  { "foreign.library_id" => "self.branchcode" },
488
  { cascade_copy => 0, cascade_delete => 0 },
489
);
490
476
=head2 course_items
491
=head2 course_items
477
492
478
Type: has_many
493
Type: has_many
Lines 819-826 __PACKAGE__->has_many( Link Here
819
);
834
);
820
835
821
836
822
# Created by DBIx::Class::Schema::Loader v0.07048 @ 2020-06-12 14:01:29
837
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-07-31 17:41:26
823
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hU6Ldf0uN2iV1h7llLH+4g
838
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:m4Bb4QTD6jSk1cSPb1NTtA
824
839
825
__PACKAGE__->add_columns(
840
__PACKAGE__->add_columns(
826
    '+pickup_location' => { is_boolean => 1 }
841
    '+pickup_location' => { is_boolean => 1 }
(-)a/Koha/Schema/Result/Category.pm (-2 / +17 lines)
Lines 265-270 __PACKAGE__->has_many( Link Here
265
  { cascade_copy => 0, cascade_delete => 0 },
265
  { cascade_copy => 0, cascade_delete => 0 },
266
);
266
);
267
267
268
=head2 configurations
269
270
Type: has_many
271
272
Related object: L<Koha::Schema::Result::Configuration>
273
274
=cut
275
276
__PACKAGE__->has_many(
277
  "configurations",
278
  "Koha::Schema::Result::Configuration",
279
  { "foreign.category_id" => "self.categorycode" },
280
  { cascade_copy => 0, cascade_delete => 0 },
281
);
282
268
=head2 pseudonymized_transactions
283
=head2 pseudonymized_transactions
269
284
270
Type: has_many
285
Type: has_many
Lines 281-288 __PACKAGE__->has_many( Link Here
281
);
296
);
282
297
283
298
284
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-01-11 15:54:08
299
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-07-31 17:41:26
285
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mWu3jtWB0NXhGMjoapGfSg
300
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WCuodn22ccfTYHLT9hhKmA
286
301
287
sub koha_object_class {
302
sub koha_object_class {
288
    'Koha::Patron::Category';
303
    'Koha::Patron::Category';
(-)a/Koha/Schema/Result/Itemtype.pm (-3 / +17 lines)
Lines 197-202 __PACKAGE__->has_many( Link Here
197
  { cascade_copy => 0, cascade_delete => 0 },
197
  { cascade_copy => 0, cascade_delete => 0 },
198
);
198
);
199
199
200
=head2 configurations
201
202
Type: has_many
203
204
Related object: L<Koha::Schema::Result::Configuration>
205
206
=cut
207
208
__PACKAGE__->has_many(
209
  "configurations",
210
  "Koha::Schema::Result::Configuration",
211
  { "foreign.item_type" => "self.itemtype" },
212
  { cascade_copy => 0, cascade_delete => 0 },
213
);
214
200
=head2 itemtypes_branches
215
=head2 itemtypes_branches
201
216
202
Type: has_many
217
Type: has_many
Lines 243-250 __PACKAGE__->has_many( Link Here
243
);
258
);
244
259
245
260
246
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-09 17:13:18
261
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-07-31 17:41:27
247
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7ojvTzsDvdHPAJMwJrAZ7A
262
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EhYGgM/69LLmApcmDcDJdw
248
263
249
__PACKAGE__->add_columns(
264
__PACKAGE__->add_columns(
250
    '+rentalcharge_hourly_calendar' => { is_boolean => 1 },
265
    '+rentalcharge_hourly_calendar' => { is_boolean => 1 },
251
- 

Return to bug 26129