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

(-)a/Koha/Schema/Result/BorrowerAttributeType.pm (-1 / +10 lines)
Lines 137-142 defines if this field is copied to anonymized_borrower_attributes (1 for yes, 0 Link Here
137
137
138
defines if the attribute is mandatory or not
138
defines if the attribute is mandatory or not
139
139
140
=head2 display_order
141
142
  data_type: 'int'
143
  default_value: NULL
144
  is_nullable: 1
145
146
  the order in which this attribute type appears in patron form
147
140
=cut
148
=cut
141
149
142
__PACKAGE__->add_columns(
150
__PACKAGE__->add_columns(
Lines 168-173 __PACKAGE__->add_columns( Link Here
168
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
176
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
169
  "mandatory",
177
  "mandatory",
170
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
178
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
179
  "display_order",
180
  { data_type => "int", is_nullable => 1 },
171
);
181
);
172
182
173
=head1 PRIMARY KEY
183
=head1 PRIMARY KEY
174
- 

Return to bug 35145