Lines 77-82
__PACKAGE__->table("suggestions");
Link Here
|
77 |
datetime_undef_if_invalid: 1 |
77 |
datetime_undef_if_invalid: 1 |
78 |
is_nullable: 1 |
78 |
is_nullable: 1 |
79 |
|
79 |
|
|
|
80 |
=head2 lastmodificationby |
81 |
|
82 |
data_type: 'integer' |
83 |
is_foreign_key: 1 |
84 |
is_nullable: 1 |
85 |
|
86 |
=head2 lastmodificationdate |
87 |
|
88 |
data_type: 'date' |
89 |
datetime_undef_if_invalid: 1 |
90 |
is_nullable: 1 |
91 |
|
80 |
=head2 STATUS |
92 |
=head2 STATUS |
81 |
|
93 |
|
82 |
accessor: 'status' |
94 |
accessor: 'status' |
Lines 228-233
__PACKAGE__->add_columns(
Link Here
|
228 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
240 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
229 |
"rejecteddate", |
241 |
"rejecteddate", |
230 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
242 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
|
|
243 |
"lastmodificationby", |
244 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
245 |
"lastmodificationdate", |
246 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
231 |
"STATUS", |
247 |
"STATUS", |
232 |
{ |
248 |
{ |
233 |
accessor => "status", |
249 |
accessor => "status", |
Lines 379-384
__PACKAGE__->belongs_to(
Link Here
|
379 |
}, |
395 |
}, |
380 |
); |
396 |
); |
381 |
|
397 |
|
|
|
398 |
=head2 lastmodificationby |
399 |
|
400 |
Type: belongs_to |
401 |
|
402 |
Related object: L<Koha::Schema::Result::Borrower> |
403 |
|
404 |
=cut |
405 |
|
406 |
__PACKAGE__->belongs_to( |
407 |
"lastmodificationby", |
408 |
"Koha::Schema::Result::Borrower", |
409 |
{ borrowernumber => "lastmodificationby" }, |
410 |
{ |
411 |
is_deferrable => 1, |
412 |
join_type => "LEFT", |
413 |
on_delete => "SET NULL", |
414 |
on_update => "CASCADE", |
415 |
}, |
416 |
); |
417 |
|
382 |
=head2 managedby |
418 |
=head2 managedby |
383 |
|
419 |
|
384 |
Type: belongs_to |
420 |
Type: belongs_to |
Lines 440-447
__PACKAGE__->belongs_to(
Link Here
|
440 |
); |
476 |
); |
441 |
|
477 |
|
442 |
|
478 |
|
443 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-03-11 12:56:41 |
479 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-11-14 15:44:38 |
444 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:UsG/gxLa0HMMbcpbscV29Q |
480 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qZuiiZgd+ry97OSngYckSA |
445 |
|
481 |
|
446 |
__PACKAGE__->belongs_to( |
482 |
__PACKAGE__->belongs_to( |
447 |
"suggester", |
483 |
"suggester", |
448 |
- |
|
|