Lines 82-88
__PACKAGE__->table("reserves");
Link Here
|
82 |
=head2 priority |
82 |
=head2 priority |
83 |
|
83 |
|
84 |
data_type: 'smallint' |
84 |
data_type: 'smallint' |
85 |
is_nullable: 1 |
85 |
is_nullable: 0 |
86 |
|
86 |
|
87 |
=head2 found |
87 |
=head2 found |
88 |
|
88 |
|
Lines 179-185
__PACKAGE__->add_columns(
Link Here
|
179 |
"reservenotes", |
179 |
"reservenotes", |
180 |
{ data_type => "longtext", is_nullable => 1 }, |
180 |
{ data_type => "longtext", is_nullable => 1 }, |
181 |
"priority", |
181 |
"priority", |
182 |
{ data_type => "smallint", is_nullable => 1 }, |
182 |
{ data_type => "smallint", is_nullable => 0 }, |
183 |
"found", |
183 |
"found", |
184 |
{ data_type => "varchar", is_nullable => 1, size => 1 }, |
184 |
{ data_type => "varchar", is_nullable => 1, size => 1 }, |
185 |
"timestamp", |
185 |
"timestamp", |
Lines 336-343
__PACKAGE__->belongs_to(
Link Here
|
336 |
); |
336 |
); |
337 |
|
337 |
|
338 |
|
338 |
|
339 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-01 07:08:48 |
339 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-25 11:25:52 |
340 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Pc5zh5iFbdwko5KS51Y9Uw |
340 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8f97w2B7OZT7KP+MKelI8g |
341 |
|
341 |
|
342 |
__PACKAGE__->belongs_to( |
342 |
__PACKAGE__->belongs_to( |
343 |
"item", |
343 |
"item", |
344 |
- |
|
|