|
Lines 293-306
__PACKAGE__->belongs_to(
Link Here
|
| 293 |
); |
293 |
); |
| 294 |
|
294 |
|
| 295 |
__PACKAGE__->belongs_to( |
295 |
__PACKAGE__->belongs_to( |
| 296 |
"borrower", |
296 |
"patron", |
| 297 |
"Koha::Schema::Result::Borrower", |
297 |
"Koha::Schema::Result::Borrower", |
| 298 |
{ borrowernumber => "borrowernumber" }, |
298 |
{ borrowernumber => "borrowernumber" }, |
| 299 |
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, |
299 |
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, |
| 300 |
); |
300 |
); |
| 301 |
|
301 |
|
| 302 |
__PACKAGE__->belongs_to( |
302 |
__PACKAGE__->belongs_to( |
| 303 |
"branch", |
303 |
"library", |
| 304 |
"Koha::Schema::Result::Branch", |
304 |
"Koha::Schema::Result::Branch", |
| 305 |
{ branchcode => "branchcode" }, |
305 |
{ branchcode => "branchcode" }, |
| 306 |
{ |
306 |
{ |
| 307 |
- |
|
|