|
Lines 47-52
the item number for this item (items.itemnumber)
Link Here
|
| 47 |
|
47 |
|
| 48 |
the date and time this order item was last touched |
48 |
the date and time this order item was last touched |
| 49 |
|
49 |
|
|
|
50 |
=head2 received |
| 51 |
|
| 52 |
data_type: 'datetime' |
| 53 |
datetime_undef_if_invalid: 1 |
| 54 |
is_nullable: 1 |
| 55 |
|
| 56 |
Datetime the item was first physically received via circulation check-in |
| 57 |
|
| 50 |
=cut |
58 |
=cut |
| 51 |
|
59 |
|
| 52 |
__PACKAGE__->add_columns( |
60 |
__PACKAGE__->add_columns( |
|
Lines 61-66
__PACKAGE__->add_columns(
Link Here
|
| 61 |
default_value => \"current_timestamp", |
69 |
default_value => \"current_timestamp", |
| 62 |
is_nullable => 0, |
70 |
is_nullable => 0, |
| 63 |
}, |
71 |
}, |
|
|
72 |
"received", |
| 73 |
{ |
| 74 |
data_type => "datetime", |
| 75 |
datetime_undef_if_invalid => 1, |
| 76 |
is_nullable => 1, |
| 77 |
}, |
| 64 |
); |
78 |
); |
| 65 |
|
79 |
|
| 66 |
=head1 PRIMARY KEY |
80 |
=head1 PRIMARY KEY |
|
Lines 93-100
__PACKAGE__->belongs_to(
Link Here
|
| 93 |
); |
107 |
); |
| 94 |
|
108 |
|
| 95 |
|
109 |
|
| 96 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 |
110 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-03-03 08:17:54 |
| 97 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0qoEUMlkDZDBMxvaNwYtrA |
111 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5qahHUjyROwLiMKhacnyqw |
| 98 |
|
112 |
|
| 99 |
|
113 |
|
| 100 |
# You can replace this text with custom content, and it will be preserved on regeneration |
114 |
# You can replace this text with custom content, and it will be preserved on regeneration |
| 101 |
- |
|
|