View | Details | Raw Unified | Return to bug 9303
Collapse All | Expand All

(-)a/Koha/Schema/Result/Borrower.pm (-1 / +13 lines)
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;
(-)a/Koha/Schema/Result/Deletedborrower.pm (-1 / +8 lines)
Lines 393-398 __PACKAGE__->table("deletedborrowers"); Link Here
393
  default_value: 1
393
  default_value: 1
394
  is_nullable: 0
394
  is_nullable: 0
395
395
396
=head2 privacy_guarantor_checkouts
397
398
  data_type: 'tinyint'
399
  default_value: 0
400
  is_nullable: 0
401
396
=cut
402
=cut
397
403
398
__PACKAGE__->add_columns(
404
__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
559
552
- 

Return to bug 9303