Lines 395-400
__PACKAGE__->table("borrowers");
Link Here
|
395 |
default_value: 1 |
395 |
default_value: 1 |
396 |
is_nullable: 0 |
396 |
is_nullable: 0 |
397 |
|
397 |
|
|
|
398 |
=head2 privacy_guarantor_checkouts |
399 |
|
400 |
data_type: 'tinyint' |
401 |
default_value: 0 |
402 |
is_nullable: 0 |
403 |
|
398 |
=cut |
404 |
=cut |
399 |
|
405 |
|
400 |
__PACKAGE__->add_columns( |
406 |
__PACKAGE__->add_columns( |
Lines 560-565
__PACKAGE__->add_columns(
Link Here
|
560 |
{ data_type => "varchar", is_nullable => 1, size => 50 }, |
566 |
{ data_type => "varchar", is_nullable => 1, size => 50 }, |
561 |
"privacy", |
567 |
"privacy", |
562 |
{ data_type => "integer", default_value => 1, is_nullable => 0 }, |
568 |
{ data_type => "integer", default_value => 1, is_nullable => 0 }, |
|
|
569 |
"privacy_guarantor_checkouts", |
570 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
563 |
); |
571 |
); |
564 |
|
572 |
|
565 |
=head1 PRIMARY KEY |
573 |
=head1 PRIMARY KEY |
Lines 1156-1161
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
Link Here
|
1156 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-10-21 19:50:05 |
1164 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-10-21 19:50:05 |
1157 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QafovaRBnm36nyoyQTGIgQ |
1165 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QafovaRBnm36nyoyQTGIgQ |
1158 |
|
1166 |
|
|
|
1167 |
__PACKAGE__->belongs_to( |
1168 |
"guarantor", |
1169 |
"Koha::Schema::Result::Borrower", |
1170 |
{ borrowernumber => "guarantorid" }, |
1171 |
); |
1159 |
|
1172 |
|
1160 |
# You can replace this text with custom content, and it will be preserved on regeneration |
|
|
1161 |
1; |
1173 |
1; |