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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +62 lines)
Lines 1334-1339 __PACKAGE__->has_many( Link Here
1334
  { cascade_copy => 0, cascade_delete => 0 },
1334
  { cascade_copy => 0, cascade_delete => 0 },
1335
);
1335
);
1336
1336
1337
=head2 return_claims_borrowernumbers
1338
1339
Type: has_many
1340
1341
Related object: L<Koha::Schema::Result::ReturnClaim>
1342
1343
=cut
1344
1345
__PACKAGE__->has_many(
1346
  "return_claims_borrowernumbers",
1347
  "Koha::Schema::Result::ReturnClaim",
1348
  { "foreign.borrowernumber" => "self.borrowernumber" },
1349
  { cascade_copy => 0, cascade_delete => 0 },
1350
);
1351
1352
=head2 return_claims_created_by
1353
1354
Type: has_many
1355
1356
Related object: L<Koha::Schema::Result::ReturnClaim>
1357
1358
=cut
1359
1360
__PACKAGE__->has_many(
1361
  "return_claims_created_by",
1362
  "Koha::Schema::Result::ReturnClaim",
1363
  { "foreign.created_by" => "self.borrowernumber" },
1364
  { cascade_copy => 0, cascade_delete => 0 },
1365
);
1366
1367
=head2 return_claims_resolved_by
1368
1369
Type: has_many
1370
1371
Related object: L<Koha::Schema::Result::ReturnClaim>
1372
1373
=cut
1374
1375
__PACKAGE__->has_many(
1376
  "return_claims_resolved_by",
1377
  "Koha::Schema::Result::ReturnClaim",
1378
  { "foreign.resolved_by" => "self.borrowernumber" },
1379
  { cascade_copy => 0, cascade_delete => 0 },
1380
);
1381
1382
=head2 return_claims_updated_by
1383
1384
Type: has_many
1385
1386
Related object: L<Koha::Schema::Result::ReturnClaim>
1387
1388
=cut
1389
1390
__PACKAGE__->has_many(
1391
  "return_claims_updated_by",
1392
  "Koha::Schema::Result::ReturnClaim",
1393
  { "foreign.updated_by" => "self.borrowernumber" },
1394
  { cascade_copy => 0, cascade_delete => 0 },
1395
);
1396
1337
=head2 reviews
1397
=head2 reviews
1338
1398
1339
Type: has_many
1399
Type: has_many
Lines 1575-1582 Composing rels: L</aqorder_users> -> ordernumber Link Here
1575
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1635
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1576
1636
1577
1637
1578
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-01 07:08:47
1638
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-10 14:31:00
1579
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FRyurgV8tVN4EBduIM8tGA
1639
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GjJLIOViIFRm185Yjl9vYA
1580
1640
1581
__PACKAGE__->add_columns(
1641
__PACKAGE__->add_columns(
1582
    '+anonymized'    => { is_boolean => 1 },
1642
    '+anonymized'    => { is_boolean => 1 },
(-)a/Koha/Schema/Result/Issue.pm (-2 / +2 lines)
Lines 249-256 __PACKAGE__->belongs_to( Link Here
249
);
249
);
250
250
251
251
252
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-10 19:55:44
252
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-24 18:12:09
253
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PUF5X7X9K44BC0d43Rat7w
253
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:14iNqmSCD7OdcJMuZxbjpQ
254
254
255
__PACKAGE__->add_columns(
255
__PACKAGE__->add_columns(
256
    '+auto_renew'      => { is_boolean => 1 },
256
    '+auto_renew'      => { is_boolean => 1 },
(-)a/Koha/Schema/Result/Item.pm (-3 / +17 lines)
Lines 686-691 __PACKAGE__->has_many( Link Here
686
  { cascade_copy => 0, cascade_delete => 0 },
686
  { cascade_copy => 0, cascade_delete => 0 },
687
);
687
);
688
688
689
=head2 return_claims
690
691
Type: has_many
692
693
Related object: L<Koha::Schema::Result::ReturnClaim>
694
695
=cut
696
697
__PACKAGE__->has_many(
698
  "return_claims",
699
  "Koha::Schema::Result::ReturnClaim",
700
  { "foreign.itemnumber" => "self.itemnumber" },
701
  { cascade_copy => 0, cascade_delete => 0 },
702
);
703
689
=head2 serialitem
704
=head2 serialitem
690
705
691
Type: might_have
706
Type: might_have
Lines 732-739 __PACKAGE__->has_many( Link Here
732
);
747
);
733
748
734
749
735
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-01 07:08:47
750
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-10 14:31:00
736
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:n/X6k+IwU4pkLS+PjKWVWA
751
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dqUjo9pJysKKBhF8PM5KnA
737
752
738
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
753
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
739
754
740
- 

Return to bug 14697