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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +62 lines)
Lines 1288-1293 __PACKAGE__->has_many( Link Here
1288
  { cascade_copy => 0, cascade_delete => 0 },
1288
  { cascade_copy => 0, cascade_delete => 0 },
1289
);
1289
);
1290
1290
1291
=head2 return_claims_borrowernumbers
1292
1293
Type: has_many
1294
1295
Related object: L<Koha::Schema::Result::ReturnClaim>
1296
1297
=cut
1298
1299
__PACKAGE__->has_many(
1300
  "return_claims_borrowernumbers",
1301
  "Koha::Schema::Result::ReturnClaim",
1302
  { "foreign.borrowernumber" => "self.borrowernumber" },
1303
  { cascade_copy => 0, cascade_delete => 0 },
1304
);
1305
1306
=head2 return_claims_created_by
1307
1308
Type: has_many
1309
1310
Related object: L<Koha::Schema::Result::ReturnClaim>
1311
1312
=cut
1313
1314
__PACKAGE__->has_many(
1315
  "return_claims_created_by",
1316
  "Koha::Schema::Result::ReturnClaim",
1317
  { "foreign.created_by" => "self.borrowernumber" },
1318
  { cascade_copy => 0, cascade_delete => 0 },
1319
);
1320
1321
=head2 return_claims_resolved_by
1322
1323
Type: has_many
1324
1325
Related object: L<Koha::Schema::Result::ReturnClaim>
1326
1327
=cut
1328
1329
__PACKAGE__->has_many(
1330
  "return_claims_resolved_by",
1331
  "Koha::Schema::Result::ReturnClaim",
1332
  { "foreign.resolved_by" => "self.borrowernumber" },
1333
  { cascade_copy => 0, cascade_delete => 0 },
1334
);
1335
1336
=head2 return_claims_updated_by
1337
1338
Type: has_many
1339
1340
Related object: L<Koha::Schema::Result::ReturnClaim>
1341
1342
=cut
1343
1344
__PACKAGE__->has_many(
1345
  "return_claims_updated_by",
1346
  "Koha::Schema::Result::ReturnClaim",
1347
  { "foreign.updated_by" => "self.borrowernumber" },
1348
  { cascade_copy => 0, cascade_delete => 0 },
1349
);
1350
1291
=head2 reviews
1351
=head2 reviews
1292
1352
1293
Type: has_many
1353
Type: has_many
Lines 1529-1536 Composing rels: L</aqorder_users> -> ordernumber Link Here
1529
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1589
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1530
1590
1531
1591
1532
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-25 10:08:38
1592
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-08-21 16:16:43
1533
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3qd/l8OkObSn8gTKTsHrkA
1593
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BA+02+mAkHshtqidkJQCQg
1534
1594
1535
__PACKAGE__->belongs_to(
1595
__PACKAGE__->belongs_to(
1536
    "guarantor",
1596
    "guarantor",
(-)a/Koha/Schema/Result/Issue.pm (-2 / +32 lines)
Lines 248-256 __PACKAGE__->belongs_to( Link Here
248
  },
248
  },
249
);
249
);
250
250
251
=head2 return_claims_issues
251
252
252
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-10 19:55:44
253
Type: has_many
253
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PUF5X7X9K44BC0d43Rat7w
254
255
Related object: L<Koha::Schema::Result::ReturnClaim>
256
257
=cut
258
259
__PACKAGE__->has_many(
260
  "return_claims_issues",
261
  "Koha::Schema::Result::ReturnClaim",
262
  { "foreign.issue_id" => "self.issue_id" },
263
  { cascade_copy => 0, cascade_delete => 0 },
264
);
265
266
=head2 return_claims_old_issues
267
268
Type: has_many
269
270
Related object: L<Koha::Schema::Result::ReturnClaim>
271
272
=cut
273
274
__PACKAGE__->has_many(
275
  "return_claims_old_issues",
276
  "Koha::Schema::Result::ReturnClaim",
277
  { "foreign.old_issue_id" => "self.issue_id" },
278
  { cascade_copy => 0, cascade_delete => 0 },
279
);
280
281
282
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-08-21 16:16:44
283
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:iGJxXU1HmOdiCWxosmhrzA
254
284
255
__PACKAGE__->add_columns(
285
__PACKAGE__->add_columns(
256
    '+auto_renew'      => { is_boolean => 1 },
286
    '+auto_renew'      => { is_boolean => 1 },
(-)a/Koha/Schema/Result/Item.pm (-3 / +17 lines)
Lines 671-676 __PACKAGE__->has_many( Link Here
671
  { cascade_copy => 0, cascade_delete => 0 },
671
  { cascade_copy => 0, cascade_delete => 0 },
672
);
672
);
673
673
674
=head2 return_claims
675
676
Type: has_many
677
678
Related object: L<Koha::Schema::Result::ReturnClaim>
679
680
=cut
681
682
__PACKAGE__->has_many(
683
  "return_claims",
684
  "Koha::Schema::Result::ReturnClaim",
685
  { "foreign.itemnumber" => "self.itemnumber" },
686
  { cascade_copy => 0, cascade_delete => 0 },
687
);
688
674
=head2 serialitem
689
=head2 serialitem
675
690
676
Type: might_have
691
Type: might_have
Lines 717-724 __PACKAGE__->has_many( Link Here
717
);
732
);
718
733
719
734
720
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-05-14 18:14:09
735
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-08-21 16:16:44
721
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wDXcErUYqg0aoQkzz3P5vg
736
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:2fq1D5qOwEuiIfaExy2zCw
722
737
723
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
738
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
724
739
725
- 

Return to bug 14697