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