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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +62 lines)
Lines 1319-1324 __PACKAGE__->has_many( Link Here
1319
  { cascade_copy => 0, cascade_delete => 0 },
1319
  { cascade_copy => 0, cascade_delete => 0 },
1320
);
1320
);
1321
1321
1322
=head2 return_claims_borrowernumbers
1323
1324
Type: has_many
1325
1326
Related object: L<Koha::Schema::Result::ReturnClaim>
1327
1328
=cut
1329
1330
__PACKAGE__->has_many(
1331
  "return_claims_borrowernumbers",
1332
  "Koha::Schema::Result::ReturnClaim",
1333
  { "foreign.borrowernumber" => "self.borrowernumber" },
1334
  { cascade_copy => 0, cascade_delete => 0 },
1335
);
1336
1337
=head2 return_claims_created_by
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_created_by",
1347
  "Koha::Schema::Result::ReturnClaim",
1348
  { "foreign.created_by" => "self.borrowernumber" },
1349
  { cascade_copy => 0, cascade_delete => 0 },
1350
);
1351
1352
=head2 return_claims_resolved_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_resolved_by",
1362
  "Koha::Schema::Result::ReturnClaim",
1363
  { "foreign.resolved_by" => "self.borrowernumber" },
1364
  { cascade_copy => 0, cascade_delete => 0 },
1365
);
1366
1367
=head2 return_claims_updated_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_updated_by",
1377
  "Koha::Schema::Result::ReturnClaim",
1378
  { "foreign.updated_by" => "self.borrowernumber" },
1379
  { cascade_copy => 0, cascade_delete => 0 },
1380
);
1381
1322
=head2 reviews
1382
=head2 reviews
1323
1383
1324
Type: has_many
1384
Type: has_many
Lines 1560-1567 Composing rels: L</aqorder_users> -> ordernumber Link Here
1560
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1620
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1561
1621
1562
1622
1563
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-05-22 04:33:29
1623
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-09-20 17:11:26
1564
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lbMdmIHlRt+zayG5+Rq4/w
1624
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qp5n9TzKFYlboPZuIdlkqQ
1565
1625
1566
__PACKAGE__->add_columns(
1626
__PACKAGE__->add_columns(
1567
    '+anonymized'    => { is_boolean => 1 },
1627
    '+anonymized'    => { is_boolean => 1 },
(-)a/Koha/Schema/Result/Branch.pm (-2 / +2 lines)
Lines 662-669 __PACKAGE__->has_many( Link Here
662
);
662
);
663
663
664
664
665
# Created by DBIx::Class::Schema::Loader v0.07048 @ 2019-07-04 04:56:47
665
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-09-20 17:11:26
666
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:15/s0/8d2cNB9YLLlsEY4w
666
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mu8qDbjVWEx0S1poJ1dd7g
667
667
668
__PACKAGE__->add_columns(
668
__PACKAGE__->add_columns(
669
    '+pickup_location' => { is_boolean => 1 }
669
    '+pickup_location' => { is_boolean => 1 }
(-)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-09-20 17:11:26
283
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dxMkKeatmxFdHn5zLMKelA
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 (-2 / +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-09-20 17:11:26
721
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wDXcErUYqg0aoQkzz3P5vg
736
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hHCIPSR8X6Dq/y4rDUKOwg
722
737
723
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
738
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
724
739
(-)a/Koha/Schema/Result/Itemtype.pm (-3 / +2 lines)
Lines 227-234 __PACKAGE__->has_many( Link Here
227
);
227
);
228
228
229
229
230
# Created by DBIx::Class::Schema::Loader v0.07048 @ 2019-07-04 04:56:48
230
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-09-20 17:11:26
231
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Qo6jabJSQGeYJ542ebSJfg
231
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:myXENdFe3IM6OnxguLyAWA
232
232
233
# Use the ItemtypeLocalization view to create the join on localization
233
# Use the ItemtypeLocalization view to create the join on localization
234
our $LANGUAGE;
234
our $LANGUAGE;
235
- 

Return to bug 14697