|
Lines 312-325
__PACKAGE__->belongs_to(
Link Here
|
| 312 |
); |
312 |
); |
| 313 |
|
313 |
|
| 314 |
__PACKAGE__->belongs_to( |
314 |
__PACKAGE__->belongs_to( |
| 315 |
"borrower", |
315 |
"patron", |
| 316 |
"Koha::Schema::Result::Borrower", |
316 |
"Koha::Schema::Result::Borrower", |
| 317 |
{ borrowernumber => "borrowernumber" }, |
317 |
{ borrowernumber => "borrowernumber" }, |
| 318 |
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, |
318 |
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, |
| 319 |
); |
319 |
); |
| 320 |
|
320 |
|
| 321 |
__PACKAGE__->belongs_to( |
321 |
__PACKAGE__->belongs_to( |
| 322 |
"branch", |
322 |
"library", |
| 323 |
"Koha::Schema::Result::Branch", |
323 |
"Koha::Schema::Result::Branch", |
| 324 |
{ branchcode => "branchcode" }, |
324 |
{ branchcode => "branchcode" }, |
| 325 |
{ |
325 |
{ |
| 326 |
- |
|
|