|
Lines 176-181
Group this item type with others with the same value on OPAC search options
Link Here
|
| 176 |
|
176 |
|
| 177 |
If automatic checkin is enabled for items of this type |
177 |
If automatic checkin is enabled for items of this type |
| 178 |
|
178 |
|
|
|
179 |
=head2 bookable |
| 180 |
|
| 181 |
data_type: 'tinyint' |
| 182 |
default_value: 0 |
| 183 |
is_nullable: 0 |
| 184 |
|
| 185 |
Activate bookable feature for items related to this item type |
| 186 |
|
| 179 |
=cut |
187 |
=cut |
| 180 |
|
188 |
|
| 181 |
__PACKAGE__->add_columns( |
189 |
__PACKAGE__->add_columns( |
|
Lines 222-227
__PACKAGE__->add_columns(
Link Here
|
| 222 |
{ data_type => "varchar", is_nullable => 1, size => 80 }, |
230 |
{ data_type => "varchar", is_nullable => 1, size => 80 }, |
| 223 |
"automatic_checkin", |
231 |
"automatic_checkin", |
| 224 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
232 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
|
|
233 |
"bookable", |
| 234 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
| 225 |
); |
235 |
); |
| 226 |
|
236 |
|
| 227 |
=head1 PRIMARY KEY |
237 |
=head1 PRIMARY KEY |
| 228 |
- |
|
|