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 return_branch |
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 checked out |
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 |
"return_branch", |
203 |
{ data_type => "varchar", is_nullable => 1, size => 10 }, |
194 |
"lastreneweddate", |
204 |
"lastreneweddate", |
195 |
{ |
205 |
{ |
196 |
data_type => "datetime", |
206 |
data_type => "datetime", |
Lines 311-318
__PACKAGE__->belongs_to(
Link Here
|
311 |
); |
321 |
); |
312 |
|
322 |
|
313 |
|
323 |
|
314 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-09-12 11:34:50 |
324 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-08-06 16:06:37 |
315 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eNzDAKc3bmTLWeDu8u4nTQ |
325 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hSiUDS3csy2TMnMIhHrl0g |
316 |
|
326 |
|
317 |
__PACKAGE__->add_columns( |
327 |
__PACKAGE__->add_columns( |
318 |
'+auto_renew' => { is_boolean => 1 }, |
328 |
'+auto_renew' => { is_boolean => 1 }, |