Lines 273-276
__PACKAGE__->add_columns(
Link Here
|
273 |
'+item_level_recall' => { is_boolean => 1 }, |
273 |
'+item_level_recall' => { is_boolean => 1 }, |
274 |
); |
274 |
); |
275 |
|
275 |
|
|
|
276 |
__PACKAGE__->belongs_to( |
277 |
"biblio", |
278 |
"Koha::Schema::Result::Biblio", |
279 |
{ biblionumber => "biblionumber" }, |
280 |
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, |
281 |
); |
282 |
|
283 |
__PACKAGE__->belongs_to( |
284 |
"item", |
285 |
"Koha::Schema::Result::Item", |
286 |
{ itemnumber => "itemnumber" }, |
287 |
{ |
288 |
is_deferrable => 1, |
289 |
join_type => "LEFT", |
290 |
on_delete => "CASCADE", |
291 |
on_update => "CASCADE", |
292 |
}, |
293 |
); |
294 |
|
295 |
__PACKAGE__->belongs_to( |
296 |
"borrower", |
297 |
"Koha::Schema::Result::Borrower", |
298 |
{ borrowernumber => "borrowernumber" }, |
299 |
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" }, |
300 |
); |
301 |
|
302 |
__PACKAGE__->belongs_to( |
303 |
"branch", |
304 |
"Koha::Schema::Result::Branch", |
305 |
{ branchcode => "branchcode" }, |
306 |
{ |
307 |
is_deferrable => 1, |
308 |
join_type => "LEFT", |
309 |
on_delete => "CASCADE", |
310 |
on_update => "CASCADE", |
311 |
}, |
312 |
); |
313 |
|
276 |
1; |
314 |
1; |
277 |
- |
|
|