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

(-)a/Koha/Schema/Result/Borrower.pm (-1 / +13 lines)
Lines 407-412 __PACKAGE__->table("borrowers"); Link Here
407
  default_value: 1
407
  default_value: 1
408
  is_nullable: 0
408
  is_nullable: 0
409
409
410
=head2 privacy_guarantor_checkouts
411
412
  data_type: 'tinyint'
413
  default_value: 0
414
  is_nullable: 0
415
410
=cut
416
=cut
411
417
412
__PACKAGE__->add_columns(
418
__PACKAGE__->add_columns(
Lines 576-581 __PACKAGE__->add_columns( Link Here
576
  { data_type => "varchar", is_nullable => 1, size => 50 },
582
  { data_type => "varchar", is_nullable => 1, size => 50 },
577
  "privacy",
583
  "privacy",
578
  { data_type => "integer", default_value => 1, is_nullable => 0 },
584
  { data_type => "integer", default_value => 1, is_nullable => 0 },
585
  "privacy_guarantor_checkouts",
586
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
579
);
587
);
580
588
581
=head1 PRIMARY KEY
589
=head1 PRIMARY KEY
Lines 1142-1147 __PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); Link Here
1142
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-13 13:23:31
1150
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-13 13:23:31
1143
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eNJqc7s8OA+vQIKYUryvaA
1151
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eNJqc7s8OA+vQIKYUryvaA
1144
1152
1153
__PACKAGE__->belongs_to(
1154
    "guarantor",
1155
    "Koha::Schema::Result::Borrower",
1156
    { borrowernumber => "guarantorid" },
1157
);
1145
1158
1146
# You can replace this text with custom content, and it will be preserved on regeneration
1147
1;
1159
1;
(-)a/Koha/Schema/Result/Deletedborrower.pm (-3 / +10 lines)
Lines 405-410 __PACKAGE__->table("deletedborrowers"); Link Here
405
  default_value: 1
405
  default_value: 1
406
  is_nullable: 0
406
  is_nullable: 0
407
407
408
=head2 privacy_guarantor_checkouts
409
410
  data_type: 'tinyint'
411
  default_value: 0
412
  is_nullable: 0
413
408
=cut
414
=cut
409
415
410
__PACKAGE__->add_columns(
416
__PACKAGE__->add_columns(
Lines 562-572 __PACKAGE__->add_columns( Link Here
562
  { data_type => "varchar", is_nullable => 1, size => 50 },
568
  { data_type => "varchar", is_nullable => 1, size => 50 },
563
  "privacy",
569
  "privacy",
564
  { data_type => "integer", default_value => 1, is_nullable => 0 },
570
  { data_type => "integer", default_value => 1, is_nullable => 0 },
571
  "privacy_guarantor_checkouts",
572
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
565
);
573
);
566
574
567
575
568
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-08-18 13:01:05
576
# Created by DBIx::Class::Schema::Loader v0.07040 @ 2014-12-21 23:11:08
569
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:cRaxMYFjVG7JB7AvsdCweg
577
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ZbIeSjSJcOtYR/mSog6JGQ
570
578
571
579
572
# You can replace this text with custom content, and it will be preserved on regeneration
580
# You can replace this text with custom content, and it will be preserved on regeneration
573
- 

Return to bug 9303