Lines 397-402
__PACKAGE__->table("borrowers");
Link Here
|
397 |
default_value: 1 |
397 |
default_value: 1 |
398 |
is_nullable: 0 |
398 |
is_nullable: 0 |
399 |
|
399 |
|
|
|
400 |
=head2 privacy_guarantor_checkouts |
401 |
|
402 |
data_type: 'tinyint' |
403 |
default_value: 0 |
404 |
is_nullable: 0 |
405 |
|
400 |
=cut |
406 |
=cut |
401 |
|
407 |
|
402 |
__PACKAGE__->add_columns( |
408 |
__PACKAGE__->add_columns( |
Lines 546-551
__PACKAGE__->add_columns(
Link Here
|
546 |
{ data_type => "varchar", is_nullable => 1, size => 50 }, |
552 |
{ data_type => "varchar", is_nullable => 1, size => 50 }, |
547 |
"privacy", |
553 |
"privacy", |
548 |
{ data_type => "integer", default_value => 1, is_nullable => 0 }, |
554 |
{ data_type => "integer", default_value => 1, is_nullable => 0 }, |
|
|
555 |
"privacy_guarantor_checkouts", |
556 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
549 |
); |
557 |
); |
550 |
|
558 |
|
551 |
=head1 PRIMARY KEY |
559 |
=head1 PRIMARY KEY |
Lines 1072-1080
Composing rels: L</course_instructors> -> course
Link Here
|
1072 |
__PACKAGE__->many_to_many("courses", "course_instructors", "course"); |
1080 |
__PACKAGE__->many_to_many("courses", "course_instructors", "course"); |
1073 |
|
1081 |
|
1074 |
|
1082 |
|
1075 |
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55 |
1083 |
# Created by DBIx::Class::Schema::Loader v0.07040 @ 2014-07-21 11:43:41 |
1076 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5cfpOojccKCoVRMj+0mWHg |
1084 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:aT5LhZK5FpTxYKWL+jd7iw |
1077 |
|
1085 |
|
|
|
1086 |
__PACKAGE__->belongs_to( |
1087 |
"guarantor", |
1088 |
"Koha::Schema::Result::Borrower", |
1089 |
{ borrowernumber => "guarantorid" }, |
1090 |
); |
1078 |
|
1091 |
|
1079 |
# You can replace this text with custom content, and it will be preserved on regeneration |
|
|
1080 |
1; |
1092 |
1; |