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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +17 lines)
Lines 865-870 __PACKAGE__->has_many( Link Here
865
  { cascade_copy => 0, cascade_delete => 0 },
865
  { cascade_copy => 0, cascade_delete => 0 },
866
);
866
);
867
867
868
=head2 items_last_borrowers
869
870
Type: has_many
871
872
Related object: L<Koha::Schema::Result::ItemsLastBorrower>
873
874
=cut
875
876
__PACKAGE__->has_many(
877
  "items_last_borrowers",
878
  "Koha::Schema::Result::ItemsLastBorrower",
879
  { "foreign.borrowernumber" => "self.borrowernumber" },
880
  { cascade_copy => 0, cascade_delete => 0 },
881
);
882
868
=head2 message_queues
883
=head2 message_queues
869
884
870
Type: has_many
885
Type: has_many
Lines 1161-1168 Composing rels: L</aqorder_users> -> ordernumber Link Here
1161
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1176
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1162
1177
1163
1178
1164
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-10-21 19:50:05
1179
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-06 11:59:52
1165
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QafovaRBnm36nyoyQTGIgQ
1180
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0nIBbkzhb+Yfp6qpSLo51A
1166
1181
1167
__PACKAGE__->belongs_to(
1182
__PACKAGE__->belongs_to(
1168
    "guarantor",
1183
    "guarantor",
(-)a/Koha/Schema/Result/Deletedborrower.pm (-4 / +3 lines)
Lines 557-565 __PACKAGE__->add_columns( Link Here
557
);
557
);
558
558
559
559
560
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-10-06 10:38:42
560
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-06 12:00:28
561
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NofxbMGIuZqlGCqvjPEI1Q
561
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:aNmdXpOz+XN5abM67sl8uA
562
562
563
563
564
# You can replace this text with custom content, and it will be preserved on regeneration
564
# You can replace this text with custom code or comments, and it will be preserved on regeneration
565
1;
565
1;
566
- 

Return to bug 15478