Lines 153-158
defines if the attribute is mandatory or not in the staff interface
Link Here
|
153 |
|
153 |
|
154 |
defines if the attribute is mandatory or not in the OPAC |
154 |
defines if the attribute is mandatory or not in the OPAC |
155 |
|
155 |
|
|
|
156 |
=head2 display_order |
157 |
|
158 |
data_type: 'integer' |
159 |
default_value: NULL |
160 |
is_nullable: 1 |
161 |
|
162 |
the order in which this attribute type appears in patron form |
163 |
|
156 |
=cut |
164 |
=cut |
157 |
|
165 |
|
158 |
__PACKAGE__->add_columns( |
166 |
__PACKAGE__->add_columns( |
Lines 188-193
__PACKAGE__->add_columns(
Link Here
|
188 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
196 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
189 |
"opac_mandatory", |
197 |
"opac_mandatory", |
190 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
198 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
|
|
199 |
"display_order", |
200 |
{ data_type => "integer", is_nullable => 1 }, |
191 |
); |
201 |
); |
192 |
|
202 |
|
193 |
=head1 PRIMARY KEY |
203 |
=head1 PRIMARY KEY |
194 |
- |
|
|