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 662-669 __PACKAGE__->has_many( Link Here
662
);
632
);
663
633
664
634
665
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-03-05 20:42:53
635
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-02-27 22:25:02
666
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nArzlMOpUO6oVOAZUgzSRg
636
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:A4XmtGKUaX/QncsPGlr84g
667
637
668
__PACKAGE__->add_columns(
638
__PACKAGE__->add_columns(
669
    '+pickup_location' => { is_boolean => 1 }
639
    '+pickup_location' => { is_boolean => 1 }
(-)a/Koha/Schema/Result/Itemtype.pm (-33 / +2 lines)
Lines 150-170 __PACKAGE__->set_primary_key("itemtype"); Link Here
150
150
151
=head1 RELATIONS
151
=head1 RELATIONS
152
152
153
=head2 branch_item_rules
154
155
Type: has_many
156
157
Related object: L<Koha::Schema::Result::BranchItemRule>
158
159
=cut
160
161
__PACKAGE__->has_many(
162
  "branch_item_rules",
163
  "Koha::Schema::Result::BranchItemRule",
164
  { "foreign.itemtype" => "self.itemtype" },
165
  { cascade_copy => 0, cascade_delete => 0 },
166
);
167
168
=head2 circulation_rules
153
=head2 circulation_rules
169
154
170
Type: has_many
155
Type: has_many
Lines 180-200 __PACKAGE__->has_many( Link Here
180
  { cascade_copy => 0, cascade_delete => 0 },
165
  { cascade_copy => 0, cascade_delete => 0 },
181
);
166
);
182
167
183
=head2 default_branch_item_rule
184
185
Type: might_have
186
187
Related object: L<Koha::Schema::Result::DefaultBranchItemRule>
188
189
=cut
190
191
__PACKAGE__->might_have(
192
  "default_branch_item_rule",
193
  "Koha::Schema::Result::DefaultBranchItemRule",
194
  { "foreign.itemtype" => "self.itemtype" },
195
  { cascade_copy => 0, cascade_delete => 0 },
196
);
197
198
=head2 old_reserves
168
=head2 old_reserves
199
169
200
Type: has_many
170
Type: has_many
Lines 226-233 __PACKAGE__->has_many( Link Here
226
);
196
);
227
197
228
198
229
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-10-05 14:29:17
199
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-02-27 22:25:02
230
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GthTVMBLO5Zi6NU3up3m+A
200
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:DCvZ8SdZ+FCBFeBqI4vigw
231
201
232
# Use the ItemtypeLocalization view to create the join on localization
202
# Use the ItemtypeLocalization view to create the join on localization
233
our $LANGUAGE;
203
our $LANGUAGE;
234
- 

Return to bug 18928