Lines 75-80
__PACKAGE__->table("old_issues");
Link Here
|
75 |
default_value: 0 |
75 |
default_value: 0 |
76 |
is_nullable: 1 |
76 |
is_nullable: 1 |
77 |
|
77 |
|
|
|
78 |
=head2 auto_renew_error |
79 |
|
80 |
data_type: 'varchar' |
81 |
is_nullable: 1 |
82 |
size: 32 |
83 |
|
78 |
=head2 timestamp |
84 |
=head2 timestamp |
79 |
|
85 |
|
80 |
data_type: 'timestamp' |
86 |
data_type: 'timestamp' |
Lines 138-143
__PACKAGE__->add_columns(
Link Here
|
138 |
{ data_type => "tinyint", is_nullable => 1 }, |
144 |
{ data_type => "tinyint", is_nullable => 1 }, |
139 |
"auto_renew", |
145 |
"auto_renew", |
140 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
146 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
|
|
147 |
"auto_renew_error", |
148 |
{ data_type => "varchar", is_nullable => 1, size => 32 }, |
141 |
"timestamp", |
149 |
"timestamp", |
142 |
{ |
150 |
{ |
143 |
data_type => "timestamp", |
151 |
data_type => "timestamp", |
Lines 218-225
__PACKAGE__->belongs_to(
Link Here
|
218 |
); |
226 |
); |
219 |
|
227 |
|
220 |
|
228 |
|
221 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-27 19:03:43 |
229 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-05-03 04:12:22 |
222 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5K7XiVMbAtr3q4GPqKrWOA |
230 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:rvUGkBhLE7AwPNp1viI23Q |
223 |
|
231 |
|
224 |
sub koha_objects_class { |
232 |
sub koha_objects_class { |
225 |
'Koha::Old::Checkouts'; |
233 |
'Koha::Old::Checkouts'; |
226 |
- |
|
|