|
Lines 81-86
__PACKAGE__->table("old_issues");
Link Here
|
| 81 |
default_value: 0 |
81 |
default_value: 0 |
| 82 |
is_nullable: 1 |
82 |
is_nullable: 1 |
| 83 |
|
83 |
|
|
|
84 |
=head2 auto_renew_error |
| 85 |
|
| 86 |
data_type: 'varchar' |
| 87 |
is_nullable: 1 |
| 88 |
size: 16 |
| 89 |
|
| 84 |
=head2 timestamp |
90 |
=head2 timestamp |
| 85 |
|
91 |
|
| 86 |
data_type: 'timestamp' |
92 |
data_type: 'timestamp' |
|
Lines 135-140
__PACKAGE__->add_columns(
Link Here
|
| 135 |
{ data_type => "tinyint", is_nullable => 1 }, |
141 |
{ data_type => "tinyint", is_nullable => 1 }, |
| 136 |
"auto_renew", |
142 |
"auto_renew", |
| 137 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
143 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
|
|
144 |
"auto_renew_error", |
| 145 |
{ data_type => "varchar", is_nullable => 1, size => 16 }, |
| 138 |
"timestamp", |
146 |
"timestamp", |
| 139 |
{ |
147 |
{ |
| 140 |
data_type => "timestamp", |
148 |
data_type => "timestamp", |
|
Lines 207-214
__PACKAGE__->belongs_to(
Link Here
|
| 207 |
); |
215 |
); |
| 208 |
|
216 |
|
| 209 |
|
217 |
|
| 210 |
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 13:04:51 |
218 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-24 12:04:45 |
| 211 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9GdzytyInRcFZns/q0qb3Q |
219 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ZS7a+cx06C3BbMJMN/kAyA |
| 212 |
|
220 |
|
| 213 |
sub koha_objects_class { |
221 |
sub koha_objects_class { |
| 214 |
'Koha::Old::Checkouts'; |
222 |
'Koha::Old::Checkouts'; |
| 215 |
- |
|
|