|
Lines 85-91
__PACKAGE__->table("old_issues");
Link Here
|
| 85 |
|
85 |
|
| 86 |
data_type: 'varchar' |
86 |
data_type: 'varchar' |
| 87 |
is_nullable: 1 |
87 |
is_nullable: 1 |
| 88 |
size: 16 |
88 |
size: 32 |
| 89 |
|
89 |
|
| 90 |
=head2 timestamp |
90 |
=head2 timestamp |
| 91 |
|
91 |
|
|
Lines 142-148
__PACKAGE__->add_columns(
Link Here
|
| 142 |
"auto_renew", |
142 |
"auto_renew", |
| 143 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
143 |
{ data_type => "tinyint", default_value => 0, is_nullable => 1 }, |
| 144 |
"auto_renew_error", |
144 |
"auto_renew_error", |
| 145 |
{ data_type => "varchar", is_nullable => 1, size => 16 }, |
145 |
{ data_type => "varchar", is_nullable => 1, size => 32 }, |
| 146 |
"timestamp", |
146 |
"timestamp", |
| 147 |
{ |
147 |
{ |
| 148 |
data_type => "timestamp", |
148 |
data_type => "timestamp", |
|
Lines 215-222
__PACKAGE__->belongs_to(
Link Here
|
| 215 |
); |
215 |
); |
| 216 |
|
216 |
|
| 217 |
|
217 |
|
| 218 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-24 12:04:45 |
218 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-24 17:18:39 |
| 219 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ZS7a+cx06C3BbMJMN/kAyA |
219 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/HTnyH8IQjOaLrkfEoGS/A |
| 220 |
|
220 |
|
| 221 |
sub koha_objects_class { |
221 |
sub koha_objects_class { |
| 222 |
'Koha::Old::Checkouts'; |
222 |
'Koha::Old::Checkouts'; |
| 223 |
- |
|
|