Lines 79-84
foreign key, linking to the branches table for the location the item was checked
Link Here
|
79 |
|
79 |
|
80 |
date the item was returned, will be NULL until moved to old_issues |
80 |
date the item was returned, will be NULL until moved to old_issues |
81 |
|
81 |
|
|
|
82 |
=head2 checkin_library |
83 |
|
84 |
data_type: 'varchar' |
85 |
is_nullable: 1 |
86 |
size: 10 |
87 |
|
88 |
foreign key, linking to the branches table for the location the item was returned |
89 |
|
82 |
=head2 lastreneweddate |
90 |
=head2 lastreneweddate |
83 |
|
91 |
|
84 |
data_type: 'datetime' |
92 |
data_type: 'datetime' |
Lines 191-196
__PACKAGE__->add_columns(
Link Here
|
191 |
datetime_undef_if_invalid => 1, |
199 |
datetime_undef_if_invalid => 1, |
192 |
is_nullable => 1, |
200 |
is_nullable => 1, |
193 |
}, |
201 |
}, |
|
|
202 |
"checkin_library", |
203 |
{ data_type => "varchar", is_nullable => 1, size => 10 }, |
194 |
"lastreneweddate", |
204 |
"lastreneweddate", |
195 |
{ |
205 |
{ |
196 |
data_type => "datetime", |
206 |
data_type => "datetime", |
Lines 326-333
__PACKAGE__->belongs_to(
Link Here
|
326 |
); |
336 |
); |
327 |
|
337 |
|
328 |
|
338 |
|
329 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-02-08 14:18:03 |
339 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-14 12:42:06 |
330 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7VMPEayWBRQ9ga7uhQGR4w |
340 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:N/TBL2PwAVjy27c608cO0A |
331 |
|
341 |
|
332 |
__PACKAGE__->add_columns( |
342 |
__PACKAGE__->add_columns( |
333 |
'+auto_renew' => { is_boolean => 1 }, |
343 |
'+auto_renew' => { is_boolean => 1 }, |