|
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 1416-1423
Composing rels: L</aqorder_users> -> ordernumber
Link Here
|
| 1416 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
1439 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
| 1417 |
|
1440 |
|
| 1418 |
|
1441 |
|
| 1419 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-09-20 13:00:20 |
1442 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-10-17 19:00:05 |
| 1420 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QT6EPIG26F/kNK6prauRgw |
1443 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7tupSyGTfkBlvucK3b+e7A |
| 1421 |
|
1444 |
|
| 1422 |
__PACKAGE__->add_columns( |
1445 |
__PACKAGE__->add_columns( |
| 1423 |
'+lost' => { is_boolean => 1 }, |
1446 |
'+lost' => { is_boolean => 1 }, |