View | Details | Raw Unified | Return to bug 15705
Collapse All | Expand All

(-)a/Koha/Schema/Result/Issue.pm (-4 / +4 lines)
Lines 86-92 __PACKAGE__->table("issues"); Link Here
86
86
87
  data_type: 'varchar'
87
  data_type: 'varchar'
88
  is_nullable: 1
88
  is_nullable: 1
89
  size: 16
89
  size: 32
90
90
91
=head2 timestamp
91
=head2 timestamp
92
92
Lines 143-149 __PACKAGE__->add_columns( Link Here
143
  "auto_renew",
143
  "auto_renew",
144
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
144
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
145
  "auto_renew_error",
145
  "auto_renew_error",
146
  { data_type => "varchar", is_nullable => 1, size => 16 },
146
  { data_type => "varchar", is_nullable => 1, size => 32 },
147
  "timestamp",
147
  "timestamp",
148
  {
148
  {
149
    data_type => "timestamp",
149
    data_type => "timestamp",
Lines 230-237 __PACKAGE__->belongs_to( Link Here
230
);
230
);
231
231
232
232
233
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-29 15:31:46
233
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-24 17:18:39
234
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/T5nt8qhlT6ocUG6A9JNIw
234
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IP7zKRDCujJqX5JCsaJBeA
235
235
236
__PACKAGE__->belongs_to(
236
__PACKAGE__->belongs_to(
237
    "borrower",
237
    "borrower",
(-)a/Koha/Schema/Result/OldIssue.pm (-5 / +4 lines)
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
- 

Return to bug 15705