|
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 580-587
__PACKAGE__->add_columns(
Link Here
|
| 580 |
{ data_type => "mediumtext", is_nullable => 1 }, |
575 |
{ data_type => "mediumtext", is_nullable => 1 }, |
| 581 |
"contacttitle", |
576 |
"contacttitle", |
| 582 |
{ data_type => "mediumtext", is_nullable => 1 }, |
577 |
{ data_type => "mediumtext", is_nullable => 1 }, |
| 583 |
"guarantorid", |
|
|
| 584 |
{ data_type => "integer", is_nullable => 1 }, |
| 585 |
"borrowernotes", |
578 |
"borrowernotes", |
| 586 |
{ data_type => "longtext", is_nullable => 1 }, |
579 |
{ data_type => "longtext", is_nullable => 1 }, |
| 587 |
"relationship", |
580 |
"relationship", |
|
Lines 883-888
__PACKAGE__->has_many(
Link Here
|
| 883 |
{ cascade_copy => 0, cascade_delete => 0 }, |
876 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 884 |
); |
877 |
); |
| 885 |
|
878 |
|
|
|
879 |
=head2 borrower_relationships_guarantees |
| 880 |
|
| 881 |
Type: has_many |
| 882 |
|
| 883 |
Related object: L<Koha::Schema::Result::BorrowerRelationship> |
| 884 |
|
| 885 |
=cut |
| 886 |
|
| 887 |
__PACKAGE__->has_many( |
| 888 |
"borrower_relationships_guarantees", |
| 889 |
"Koha::Schema::Result::BorrowerRelationship", |
| 890 |
{ "foreign.guarantee_id" => "self.borrowernumber" }, |
| 891 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 892 |
); |
| 893 |
|
| 894 |
=head2 borrower_relationships_guarantors |
| 895 |
|
| 896 |
Type: has_many |
| 897 |
|
| 898 |
Related object: L<Koha::Schema::Result::BorrowerRelationship> |
| 899 |
|
| 900 |
=cut |
| 901 |
|
| 902 |
__PACKAGE__->has_many( |
| 903 |
"borrower_relationships_guarantors", |
| 904 |
"Koha::Schema::Result::BorrowerRelationship", |
| 905 |
{ "foreign.guarantor_id" => "self.borrowernumber" }, |
| 906 |
{ cascade_copy => 0, cascade_delete => 0 }, |
| 907 |
); |
| 908 |
|
| 886 |
=head2 branchcode |
909 |
=head2 branchcode |
| 887 |
|
910 |
|
| 888 |
Type: belongs_to |
911 |
Type: belongs_to |
|
Lines 1529-1536
Composing rels: L</aqorder_users> -> ordernumber
Link Here
|
| 1529 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
1552 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
| 1530 |
|
1553 |
|
| 1531 |
|
1554 |
|
| 1532 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-25 10:08:38 |
1555 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-05-17 12:11:31 |
| 1533 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3qd/l8OkObSn8gTKTsHrkA |
1556 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:rb0wEXHaSvYum10aZjbAOA |
| 1534 |
|
1557 |
|
| 1535 |
__PACKAGE__->add_columns( |
1558 |
__PACKAGE__->add_columns( |
| 1536 |
'+anonymized' => { is_boolean => 1 }, |
1559 |
'+anonymized' => { is_boolean => 1 }, |