Lines 260-296
__PACKAGE__->table("borrowers");
Link Here
|
260 |
is_nullable: 1 |
260 |
is_nullable: 1 |
261 |
size: 255 |
261 |
size: 255 |
262 |
|
262 |
|
263 |
=head2 contactname |
|
|
264 |
|
265 |
data_type: 'longtext' |
266 |
is_nullable: 1 |
267 |
|
268 |
=head2 contactfirstname |
269 |
|
270 |
data_type: 'mediumtext' |
271 |
is_nullable: 1 |
272 |
|
273 |
=head2 contacttitle |
274 |
|
275 |
data_type: 'mediumtext' |
276 |
is_nullable: 1 |
277 |
|
278 |
=head2 guarantorid |
279 |
|
280 |
data_type: 'integer' |
281 |
is_nullable: 1 |
282 |
|
283 |
=head2 borrowernotes |
263 |
=head2 borrowernotes |
284 |
|
264 |
|
285 |
data_type: 'longtext' |
265 |
data_type: 'longtext' |
286 |
is_nullable: 1 |
266 |
is_nullable: 1 |
287 |
|
267 |
|
288 |
=head2 relationship |
|
|
289 |
|
290 |
data_type: 'varchar' |
291 |
is_nullable: 1 |
292 |
size: 100 |
293 |
|
294 |
=head2 sex |
268 |
=head2 sex |
295 |
|
269 |
|
296 |
data_type: 'varchar' |
270 |
data_type: 'varchar' |
Lines 568-585
__PACKAGE__->add_columns(
Link Here
|
568 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
542 |
{ data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, |
569 |
"debarredcomment", |
543 |
"debarredcomment", |
570 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
544 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
571 |
"contactname", |
|
|
572 |
{ data_type => "longtext", is_nullable => 1 }, |
573 |
"contactfirstname", |
574 |
{ data_type => "mediumtext", is_nullable => 1 }, |
575 |
"contacttitle", |
576 |
{ data_type => "mediumtext", is_nullable => 1 }, |
577 |
"guarantorid", |
578 |
{ data_type => "integer", is_nullable => 1 }, |
579 |
"borrowernotes", |
545 |
"borrowernotes", |
580 |
{ data_type => "longtext", is_nullable => 1 }, |
546 |
{ data_type => "longtext", is_nullable => 1 }, |
581 |
"relationship", |
|
|
582 |
{ data_type => "varchar", is_nullable => 1, size => 100 }, |
583 |
"sex", |
547 |
"sex", |
584 |
{ data_type => "varchar", is_nullable => 1, size => 1 }, |
548 |
{ data_type => "varchar", is_nullable => 1, size => 1 }, |
585 |
"password", |
549 |
"password", |
Lines 860-865
__PACKAGE__->has_many(
Link Here
|
860 |
{ cascade_copy => 0, cascade_delete => 0 }, |
824 |
{ cascade_copy => 0, cascade_delete => 0 }, |
861 |
); |
825 |
); |
862 |
|
826 |
|
|
|
827 |
=head2 borrower_relationships_guarantees |
828 |
|
829 |
Type: has_many |
830 |
|
831 |
Related object: L<Koha::Schema::Result::BorrowerRelationship> |
832 |
|
833 |
=cut |
834 |
|
835 |
__PACKAGE__->has_many( |
836 |
"borrower_relationships_guarantees", |
837 |
"Koha::Schema::Result::BorrowerRelationship", |
838 |
{ "foreign.guarantee_id" => "self.borrowernumber" }, |
839 |
{ cascade_copy => 0, cascade_delete => 0 }, |
840 |
); |
841 |
|
842 |
=head2 borrower_relationships_guarantors |
843 |
|
844 |
Type: has_many |
845 |
|
846 |
Related object: L<Koha::Schema::Result::BorrowerRelationship> |
847 |
|
848 |
=cut |
849 |
|
850 |
__PACKAGE__->has_many( |
851 |
"borrower_relationships_guarantors", |
852 |
"Koha::Schema::Result::BorrowerRelationship", |
853 |
{ "foreign.guarantor_id" => "self.borrowernumber" }, |
854 |
{ cascade_copy => 0, cascade_delete => 0 }, |
855 |
); |
856 |
|
863 |
=head2 borrower_syncs |
857 |
=head2 borrower_syncs |
864 |
|
858 |
|
865 |
Type: has_many |
859 |
Type: has_many |
Lines 1416-1423
Composing rels: L</aqorder_users> -> ordernumber
Link Here
|
1416 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
1410 |
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); |
1417 |
|
1411 |
|
1418 |
|
1412 |
|
1419 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-07-06 14:12:40 |
1413 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2018-07-17 11:22:45 |
1420 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LaQWPXzF1Amzt8fgEEyHdg |
1414 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x5WLvZYRhOpWEK80B0KpMA |
1421 |
|
1415 |
|
1422 |
__PACKAGE__->add_columns( |
1416 |
__PACKAGE__->add_columns( |
1423 |
'+lost' => { is_boolean => 1 }, |
1417 |
'+lost' => { is_boolean => 1 }, |