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 }, |