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 |
Lines 334-341
__PACKAGE__->has_many(
Link Here
|
334 |
); |
344 |
); |
335 |
|
345 |
|
336 |
|
346 |
|
337 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-05-08 14:38:07 |
347 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-06-26 13:35:02 |
338 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9NChRQA4eBUqHpLXUFmOuw |
348 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Rjk3kfSQmwkcgjoykCX9dg |
339 |
|
349 |
|
340 |
__PACKAGE__->add_columns( |
350 |
__PACKAGE__->add_columns( |
341 |
'+automatic_checkin' => { is_boolean => 1 }, |
351 |
'+automatic_checkin' => { is_boolean => 1 }, |
342 |
- |
|
|