|
Lines 94-99
__PACKAGE__->table("old_issues");
Link Here
|
| 94 |
default_value: 0 |
94 |
default_value: 0 |
| 95 |
is_nullable: 0 |
95 |
is_nullable: 0 |
| 96 |
|
96 |
|
|
|
97 |
=head2 note |
| 98 |
|
| 99 |
data_type: 'mediumtext' |
| 100 |
is_nullable: 1 |
| 101 |
|
| 102 |
=head2 notedate |
| 103 |
|
| 104 |
data_type: 'datetime' |
| 105 |
datetime_undef_if_invalid: 1 |
| 106 |
is_nullable: 1 |
| 107 |
|
| 108 |
=head2 noteseen |
| 109 |
|
| 110 |
data_type: 'integer' |
| 111 |
is_nullable: 1 |
| 112 |
|
| 97 |
=cut |
113 |
=cut |
| 98 |
|
114 |
|
| 99 |
__PACKAGE__->add_columns( |
115 |
__PACKAGE__->add_columns( |
|
Lines 142-147
__PACKAGE__->add_columns(
Link Here
|
| 142 |
}, |
158 |
}, |
| 143 |
"onsite_checkout", |
159 |
"onsite_checkout", |
| 144 |
{ data_type => "integer", default_value => 0, is_nullable => 0 }, |
160 |
{ data_type => "integer", default_value => 0, is_nullable => 0 }, |
|
|
161 |
"note", |
| 162 |
{ data_type => "mediumtext", is_nullable => 1 }, |
| 163 |
"notedate", |
| 164 |
{ |
| 165 |
data_type => "datetime", |
| 166 |
datetime_undef_if_invalid => 1, |
| 167 |
is_nullable => 1, |
| 168 |
}, |
| 169 |
"noteseen", |
| 170 |
{ data_type => "integer", is_nullable => 1 }, |
| 145 |
); |
171 |
); |
| 146 |
|
172 |
|
| 147 |
=head1 PRIMARY KEY |
173 |
=head1 PRIMARY KEY |
|
Lines 199-206
__PACKAGE__->belongs_to(
Link Here
|
| 199 |
); |
225 |
); |
| 200 |
|
226 |
|
| 201 |
|
227 |
|
| 202 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-07 14:25:37 |
228 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-20 13:44:33 |
| 203 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Nqm7crVG/Y5G3kuLAAKdSQ |
229 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3ZaqChwtBW1oU0gMY40XJw |
| 204 |
|
230 |
|
| 205 |
sub koha_objects_class { |
231 |
sub koha_objects_class { |
| 206 |
'Koha::Old::Checkouts'; |
232 |
'Koha::Old::Checkouts'; |
| 207 |
- |
|
|