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

(-)a/Koha/Schema/Result/Branch.pm (-32 / +2 lines)
Lines 301-321 __PACKAGE__->has_many( Link Here
301
  { cascade_copy => 0, cascade_delete => 0 },
301
  { cascade_copy => 0, cascade_delete => 0 },
302
);
302
);
303
303
304
=head2 branch_item_rules
305
306
Type: has_many
307
308
Related object: L<Koha::Schema::Result::BranchItemRule>
309
310
=cut
311
312
__PACKAGE__->has_many(
313
  "branch_item_rules",
314
  "Koha::Schema::Result::BranchItemRule",
315
  { "foreign.branchcode" => "self.branchcode" },
316
  { cascade_copy => 0, cascade_delete => 0 },
317
);
318
319
=head2 branches_overdrive
304
=head2 branches_overdrive
320
305
321
Type: might_have
306
Type: might_have
Lines 481-501 __PACKAGE__->has_many( Link Here
481
  { cascade_copy => 0, cascade_delete => 0 },
466
  { cascade_copy => 0, cascade_delete => 0 },
482
);
467
);
483
468
484
=head2 default_branch_circ_rule
485
486
Type: might_have
487
488
Related object: L<Koha::Schema::Result::DefaultBranchCircRule>
489
490
=cut
491
492
__PACKAGE__->might_have(
493
  "default_branch_circ_rule",
494
  "Koha::Schema::Result::DefaultBranchCircRule",
495
  { "foreign.branchcode" => "self.branchcode" },
496
  { cascade_copy => 0, cascade_delete => 0 },
497
);
498
499
=head2 edifact_eans
469
=head2 edifact_eans
500
470
501
Type: has_many
471
Type: has_many
Lines 677-684 __PACKAGE__->has_many( Link Here
677
);
647
);
678
648
679
649
680
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-03-11 12:56:41
650
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-29 15:02:52
681
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:pKohWwsuUHcZSlGDj7zmcw
651
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:y+tNq5YiUeUOyAwB4r6GHw
682
652
683
__PACKAGE__->add_columns(
653
__PACKAGE__->add_columns(
684
    '+pickup_location' => { is_boolean => 1 }
654
    '+pickup_location' => { is_boolean => 1 }
(-)a/Koha/Schema/Result/Itemtype.pm (-33 / +2 lines)
Lines 166-186 __PACKAGE__->set_primary_key("itemtype"); Link Here
166
166
167
=head1 RELATIONS
167
=head1 RELATIONS
168
168
169
=head2 branch_item_rules
170
171
Type: has_many
172
173
Related object: L<Koha::Schema::Result::BranchItemRule>
174
175
=cut
176
177
__PACKAGE__->has_many(
178
  "branch_item_rules",
179
  "Koha::Schema::Result::BranchItemRule",
180
  { "foreign.itemtype" => "self.itemtype" },
181
  { cascade_copy => 0, cascade_delete => 0 },
182
);
183
184
=head2 circulation_rules
169
=head2 circulation_rules
185
170
186
Type: has_many
171
Type: has_many
Lines 196-216 __PACKAGE__->has_many( Link Here
196
  { cascade_copy => 0, cascade_delete => 0 },
181
  { cascade_copy => 0, cascade_delete => 0 },
197
);
182
);
198
183
199
=head2 default_branch_item_rule
200
201
Type: might_have
202
203
Related object: L<Koha::Schema::Result::DefaultBranchItemRule>
204
205
=cut
206
207
__PACKAGE__->might_have(
208
  "default_branch_item_rule",
209
  "Koha::Schema::Result::DefaultBranchItemRule",
210
  { "foreign.itemtype" => "self.itemtype" },
211
  { cascade_copy => 0, cascade_delete => 0 },
212
);
213
214
=head2 old_reserves
184
=head2 old_reserves
215
185
216
Type: has_many
186
Type: has_many
Lines 242-249 __PACKAGE__->has_many( Link Here
242
);
212
);
243
213
244
214
245
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-03-07 17:30:46
215
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-29 15:02:52
246
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CDIOU6LmF7suaujk1NQOeg
216
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:X7Py35p8kotheBvJjuwDcA
247
217
248
# Use the ItemtypeLocalization view to create the join on localization
218
# Use the ItemtypeLocalization view to create the join on localization
249
our $LANGUAGE;
219
our $LANGUAGE;
250
- 

Return to bug 18928