Lines 275-285
__PACKAGE__->table("borrowers");
Link Here
|
275 |
data_type: 'mediumtext' |
275 |
data_type: 'mediumtext' |
276 |
is_nullable: 1 |
276 |
is_nullable: 1 |
277 |
|
277 |
|
278 |
=head2 guarantorid |
|
|
279 |
|
280 |
data_type: 'integer' |
281 |
is_nullable: 1 |
282 |
|
283 |
=head2 borrowernotes |
278 |
=head2 borrowernotes |
284 |
|
279 |
|
285 |
data_type: 'longtext' |
280 |
data_type: 'longtext' |
Lines 574-581
__PACKAGE__->add_columns(
Link Here
|
574 |
{ data_type => "mediumtext", is_nullable => 1 }, |
569 |
{ data_type => "mediumtext", is_nullable => 1 }, |
575 |
"contacttitle", |
570 |
"contacttitle", |
576 |
{ data_type => "mediumtext", is_nullable => 1 }, |
571 |
{ data_type => "mediumtext", is_nullable => 1 }, |
577 |
"guarantorid", |
|
|
578 |
{ data_type => "integer", is_nullable => 1 }, |
579 |
"borrowernotes", |
572 |
"borrowernotes", |
580 |
{ data_type => "longtext", is_nullable => 1 }, |
573 |
{ data_type => "longtext", is_nullable => 1 }, |
581 |
"relationship", |
574 |
"relationship", |
Lines 860-865
__PACKAGE__->has_many(
Link Here
|
860 |
{ cascade_copy => 0, cascade_delete => 0 }, |
853 |
{ cascade_copy => 0, cascade_delete => 0 }, |
861 |
); |
854 |
); |
862 |
|
855 |
|
|
|
856 |
=head2 borrower_relationships_guarantees |
857 |
|
858 |
Type: has_many |
859 |
|
860 |
Related object: L<Koha::Schema::Result::BorrowerRelationship> |
861 |
|
862 |
=cut |
863 |
|
864 |
__PACKAGE__->has_many( |
865 |
"borrower_relationships_guarantees", |
866 |
"Koha::Schema::Result::BorrowerRelationship", |
867 |
{ "foreign.guarantee_id" => "self.borrowernumber" }, |
868 |
{ cascade_copy => 0, cascade_delete => 0 }, |
869 |
); |
870 |
|
871 |
=head2 borrower_relationships_guarantors |
872 |
|
873 |
Type: has_many |
874 |
|
875 |
Related object: L<Koha::Schema::Result::BorrowerRelationship> |
876 |
|
877 |
=cut |
878 |
|
879 |
__PACKAGE__->has_many( |
880 |
"borrower_relationships_guarantors", |
881 |
"Koha::Schema::Result::BorrowerRelationship", |
882 |
{ "foreign.guarantor_id" => "self.borrowernumber" }, |
883 |
{ cascade_copy => 0, cascade_delete => 0 }, |
884 |
); |
885 |
|
863 |
=head2 branchcode |
886 |
=head2 branchcode |
864 |
|
887 |
|
865 |
Type: belongs_to |
888 |
Type: belongs_to |
Lines 1446-1453
Composing rels: L</aqorder_users> -> ordernumber
Link Here
|
1446 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
1469 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
1447 |
|
1470 |
|
1448 |
|
1471 |
|
1449 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-02-15 13:15:09 |
1472 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-02-20 19:44:34 |
1450 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NhuG8jv9ut+qIIm3vGHsrQ |
1473 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ML9SBaNZMZjw7lodiAIQ+w |
1451 |
|
1474 |
|
1452 |
__PACKAGE__->add_columns( |
1475 |
__PACKAGE__->add_columns( |
1453 |
'+lost' => { is_boolean => 1 }, |
1476 |
'+lost' => { is_boolean => 1 }, |