|
Lines 131-136
__PACKAGE__->table("itemtypes");
Link Here
|
| 131 |
is_nullable: 1 |
131 |
is_nullable: 1 |
| 132 |
size: 80 |
132 |
size: 80 |
| 133 |
|
133 |
|
|
|
134 |
=head2 automatic_checkin |
| 135 |
|
| 136 |
data_type: 'tinyint' |
| 137 |
default_value: 0 |
| 138 |
is_nullable: 0 |
| 139 |
|
| 134 |
=cut |
140 |
=cut |
| 135 |
|
141 |
|
| 136 |
__PACKAGE__->add_columns( |
142 |
__PACKAGE__->add_columns( |
|
Lines 175-180
__PACKAGE__->add_columns(
Link Here
|
| 175 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
181 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
| 176 |
"searchcategory", |
182 |
"searchcategory", |
| 177 |
{ data_type => "varchar", is_nullable => 1, size => 80 }, |
183 |
{ data_type => "varchar", is_nullable => 1, size => 80 }, |
|
|
184 |
"automatic_checkin", |
| 185 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
| 178 |
); |
186 |
); |
| 179 |
|
187 |
|
| 180 |
=head1 PRIMARY KEY |
188 |
=head1 PRIMARY KEY |
|
Lines 287-298
__PACKAGE__->has_many(
Link Here
|
| 287 |
); |
295 |
); |
| 288 |
|
296 |
|
| 289 |
|
297 |
|
| 290 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-08-13 08:14:04 |
298 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-12-04 15:29:28 |
| 291 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5RxmTmtrwJJhTZMur1N05A |
299 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nvjU4T+cepfbUA2tvXKKSA |
| 292 |
|
300 |
|
| 293 |
__PACKAGE__->add_columns( |
301 |
__PACKAGE__->add_columns( |
| 294 |
'+rentalcharge_hourly_calendar' => { is_boolean => 1 }, |
302 |
'+rentalcharge_hourly_calendar' => { is_boolean => 1 }, |
| 295 |
'+rentalcharge_daily_calendar' => { is_boolean => 1 }, |
303 |
'+rentalcharge_daily_calendar' => { is_boolean => 1 }, |
|
|
304 |
'+automatic_checkin' => { is_boolean => 1 }, |
| 296 |
); |
305 |
); |
| 297 |
|
306 |
|
| 298 |
# Use the ItemtypeLocalization view to create the join on localization |
307 |
# Use the ItemtypeLocalization view to create the join on localization |
| 299 |
- |
|
|