Lines 32-37
__PACKAGE__->table("accountlines");
Link Here
|
32 |
=head2 issue_id |
32 |
=head2 issue_id |
33 |
|
33 |
|
34 |
data_type: 'integer' |
34 |
data_type: 'integer' |
|
|
35 |
is_foreign_key: 1 |
36 |
is_nullable: 1 |
37 |
|
38 |
=head2 old_issue_id |
39 |
|
40 |
data_type: 'integer' |
41 |
is_foreign_key: 1 |
35 |
is_nullable: 1 |
42 |
is_nullable: 1 |
36 |
|
43 |
|
37 |
=head2 borrowernumber |
44 |
=head2 borrowernumber |
Lines 150-156
__PACKAGE__->add_columns(
Link Here
|
150 |
"accountlines_id", |
157 |
"accountlines_id", |
151 |
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
158 |
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
152 |
"issue_id", |
159 |
"issue_id", |
153 |
{ data_type => "integer", is_nullable => 1 }, |
160 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
|
|
161 |
"old_issue_id", |
162 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
154 |
"borrowernumber", |
163 |
"borrowernumber", |
155 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
164 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
156 |
"itemnumber", |
165 |
"itemnumber", |
Lines 335-340
__PACKAGE__->belongs_to(
Link Here
|
335 |
}, |
344 |
}, |
336 |
); |
345 |
); |
337 |
|
346 |
|
|
|
347 |
=head2 issue |
348 |
|
349 |
Type: belongs_to |
350 |
|
351 |
Related object: L<Koha::Schema::Result::Issue> |
352 |
|
353 |
=cut |
354 |
|
355 |
__PACKAGE__->belongs_to( |
356 |
"issue", |
357 |
"Koha::Schema::Result::Issue", |
358 |
{ issue_id => "issue_id" }, |
359 |
{ |
360 |
is_deferrable => 1, |
361 |
join_type => "LEFT", |
362 |
on_delete => "SET NULL", |
363 |
on_update => "CASCADE", |
364 |
}, |
365 |
); |
366 |
|
338 |
=head2 itemnumber |
367 |
=head2 itemnumber |
339 |
|
368 |
|
340 |
Type: belongs_to |
369 |
Type: belongs_to |
Lines 375-380
__PACKAGE__->belongs_to(
Link Here
|
375 |
}, |
404 |
}, |
376 |
); |
405 |
); |
377 |
|
406 |
|
|
|
407 |
=head2 old_issue |
408 |
|
409 |
Type: belongs_to |
410 |
|
411 |
Related object: L<Koha::Schema::Result::OldIssue> |
412 |
|
413 |
=cut |
414 |
|
415 |
__PACKAGE__->belongs_to( |
416 |
"old_issue", |
417 |
"Koha::Schema::Result::OldIssue", |
418 |
{ issue_id => "old_issue_id" }, |
419 |
{ |
420 |
is_deferrable => 1, |
421 |
join_type => "LEFT", |
422 |
on_delete => "SET NULL", |
423 |
on_update => "CASCADE", |
424 |
}, |
425 |
); |
426 |
|
378 |
=head2 register |
427 |
=head2 register |
379 |
|
428 |
|
380 |
Type: belongs_to |
429 |
Type: belongs_to |
Lines 396-403
__PACKAGE__->belongs_to(
Link Here
|
396 |
); |
445 |
); |
397 |
|
446 |
|
398 |
|
447 |
|
399 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-01-28 20:21:02 |
448 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-02-08 14:18:03 |
400 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PjQR7oUkefiDt+eV69jZ3A |
449 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:aVLdvK1lek01lZ0mbaCwZQ |
401 |
|
450 |
|
402 |
=head2 patron |
451 |
=head2 patron |
403 |
|
452 |
|