Lines 145-150
defines if this field is copied to anonymized_borrower_attributes (1 for yes, 0
Link Here
|
145 |
|
145 |
|
146 |
defines if the attribute is mandatory or not |
146 |
defines if the attribute is mandatory or not |
147 |
|
147 |
|
|
|
148 |
=head2 display_order |
149 |
|
150 |
data_type: 'integer' |
151 |
default_value: NULL |
152 |
is_nullable: 1 |
153 |
|
154 |
the order in which this attribute type appears in patron form |
155 |
|
148 |
=cut |
156 |
=cut |
149 |
|
157 |
|
150 |
__PACKAGE__->add_columns( |
158 |
__PACKAGE__->add_columns( |
Lines 178-183
__PACKAGE__->add_columns(
Link Here
|
178 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
186 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
179 |
"mandatory", |
187 |
"mandatory", |
180 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
188 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
|
|
189 |
"display_order", |
190 |
{ data_type => "integer", is_nullable => 1 }, |
181 |
); |
191 |
); |
182 |
|
192 |
|
183 |
=head1 PRIMARY KEY |
193 |
=head1 PRIMARY KEY |
184 |
- |
|
|