|
Lines 41-46
__PACKAGE__->table("accountlines");
Link Here
|
| 41 |
is_foreign_key: 1 |
41 |
is_foreign_key: 1 |
| 42 |
is_nullable: 1 |
42 |
is_nullable: 1 |
| 43 |
|
43 |
|
|
|
44 |
=head2 reserve_id |
| 45 |
|
| 46 |
data_type: 'integer' |
| 47 |
is_foreign_key: 1 |
| 48 |
is_nullable: 1 |
| 49 |
|
| 50 |
=head2 old_reserve_id |
| 51 |
|
| 52 |
data_type: 'integer' |
| 53 |
is_foreign_key: 1 |
| 54 |
is_nullable: 1 |
| 55 |
|
| 44 |
=head2 borrowernumber |
56 |
=head2 borrowernumber |
| 45 |
|
57 |
|
| 46 |
data_type: 'integer' |
58 |
data_type: 'integer' |
|
Lines 160-165
__PACKAGE__->add_columns(
Link Here
|
| 160 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
172 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
| 161 |
"old_issue_id", |
173 |
"old_issue_id", |
| 162 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
174 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
|
|
175 |
"reserve_id", |
| 176 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
| 177 |
"old_reserve_id", |
| 178 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
| 163 |
"borrowernumber", |
179 |
"borrowernumber", |
| 164 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
180 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
| 165 |
"itemnumber", |
181 |
"itemnumber", |
|
Lines 424-429
__PACKAGE__->belongs_to(
Link Here
|
| 424 |
}, |
440 |
}, |
| 425 |
); |
441 |
); |
| 426 |
|
442 |
|
|
|
443 |
=head2 old_reserve |
| 444 |
|
| 445 |
Type: belongs_to |
| 446 |
|
| 447 |
Related object: L<Koha::Schema::Result::OldReserve> |
| 448 |
|
| 449 |
=cut |
| 450 |
|
| 451 |
__PACKAGE__->belongs_to( |
| 452 |
"old_reserve", |
| 453 |
"Koha::Schema::Result::OldReserve", |
| 454 |
{ reserve_id => "old_reserve_id" }, |
| 455 |
{ |
| 456 |
is_deferrable => 1, |
| 457 |
join_type => "LEFT", |
| 458 |
on_delete => "SET NULL", |
| 459 |
on_update => "CASCADE", |
| 460 |
}, |
| 461 |
); |
| 462 |
|
| 427 |
=head2 register |
463 |
=head2 register |
| 428 |
|
464 |
|
| 429 |
Type: belongs_to |
465 |
Type: belongs_to |
|
Lines 444-452
__PACKAGE__->belongs_to(
Link Here
|
| 444 |
}, |
480 |
}, |
| 445 |
); |
481 |
); |
| 446 |
|
482 |
|
|
|
483 |
=head2 reserve |
| 484 |
|
| 485 |
Type: belongs_to |
| 486 |
|
| 487 |
Related object: L<Koha::Schema::Result::Reserve> |
| 488 |
|
| 489 |
=cut |
| 490 |
|
| 491 |
__PACKAGE__->belongs_to( |
| 492 |
"reserve", |
| 493 |
"Koha::Schema::Result::Reserve", |
| 494 |
{ reserve_id => "reserve_id" }, |
| 495 |
{ |
| 496 |
is_deferrable => 1, |
| 497 |
join_type => "LEFT", |
| 498 |
on_delete => "SET NULL", |
| 499 |
on_update => "CASCADE", |
| 500 |
}, |
| 501 |
); |
| 502 |
|
| 447 |
|
503 |
|
| 448 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-02-08 14:18:03 |
504 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-09-16 10:19:22 |
| 449 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:aVLdvK1lek01lZ0mbaCwZQ |
505 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JGNBdISXLLAdEXI25nrzaQ |
| 450 |
|
506 |
|
| 451 |
=head2 patron |
507 |
=head2 patron |
| 452 |
|
508 |
|