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

(-)a/Koha/Schema/Result/BranchBorrowerCircRule.pm (-2 / +9 lines)
Lines 47-52 __PACKAGE__->table("branch_borrower_circ_rules"); Link Here
47
  data_type: 'integer'
47
  data_type: 'integer'
48
  is_nullable: 1
48
  is_nullable: 1
49
49
50
=head2 max_holds
51
52
  data_type: 'integer'
53
  is_nullable: 1
54
50
=cut
55
=cut
51
56
52
__PACKAGE__->add_columns(
57
__PACKAGE__->add_columns(
Lines 58-63 __PACKAGE__->add_columns( Link Here
58
  { data_type => "integer", is_nullable => 1 },
63
  { data_type => "integer", is_nullable => 1 },
59
  "maxonsiteissueqty",
64
  "maxonsiteissueqty",
60
  { data_type => "integer", is_nullable => 1 },
65
  { data_type => "integer", is_nullable => 1 },
66
  "max_holds",
67
  { data_type => "integer", is_nullable => 1 },
61
);
68
);
62
69
63
=head1 PRIMARY KEY
70
=head1 PRIMARY KEY
Lines 107-114 __PACKAGE__->belongs_to( Link Here
107
);
114
);
108
115
109
116
110
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-05-13 17:48:39
117
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-06-27 14:54:53
111
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MrhgFhfjV71AC5PXmvRPzg
118
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sMWYrZafhg3InWiWPZ2Axw
112
119
113
120
114
# You can replace this text with custom content, and it will be preserved on regeneration
121
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/DefaultBorrowerCircRule.pm (-3 / +9 lines)
Lines 40-45 __PACKAGE__->table("default_borrower_circ_rules"); Link Here
40
  data_type: 'integer'
40
  data_type: 'integer'
41
  is_nullable: 1
41
  is_nullable: 1
42
42
43
=head2 max_holds
44
45
  data_type: 'integer'
46
  is_nullable: 1
47
43
=cut
48
=cut
44
49
45
__PACKAGE__->add_columns(
50
__PACKAGE__->add_columns(
Lines 49-54 __PACKAGE__->add_columns( Link Here
49
  { data_type => "integer", is_nullable => 1 },
54
  { data_type => "integer", is_nullable => 1 },
50
  "maxonsiteissueqty",
55
  "maxonsiteissueqty",
51
  { data_type => "integer", is_nullable => 1 },
56
  { data_type => "integer", is_nullable => 1 },
57
  "max_holds",
58
  { data_type => "integer", is_nullable => 1 },
52
);
59
);
53
60
54
=head1 PRIMARY KEY
61
=head1 PRIMARY KEY
Lines 81-88 __PACKAGE__->belongs_to( Link Here
81
);
88
);
82
89
83
90
84
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-05-13 17:48:39
91
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-06-27 14:54:53
85
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EQ8PdQhM6+5K582+AL5ZXQ
92
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:aETMg1bzMvdgf/J/Zbu4+Q
86
93
87
94
88
# You can replace this text with custom content, and it will be preserved on regeneration
95
# You can replace this text with custom content, and it will be preserved on regeneration
89
- 

Return to bug 15524