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

(-)a/Koha/Schema/Result/Issue.pm (-2 / +10 lines)
Lines 76-81 __PACKAGE__->table("issues"); Link Here
76
  default_value: 0
76
  default_value: 0
77
  is_nullable: 1
77
  is_nullable: 1
78
78
79
=head2 auto_renew_error
80
81
  data_type: 'varchar'
82
  is_nullable: 1
83
  size: 32
84
79
=head2 timestamp
85
=head2 timestamp
80
86
81
  data_type: 'timestamp'
87
  data_type: 'timestamp'
Lines 139-144 __PACKAGE__->add_columns( Link Here
139
  { data_type => "tinyint", is_nullable => 1 },
145
  { data_type => "tinyint", is_nullable => 1 },
140
  "auto_renew",
146
  "auto_renew",
141
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
147
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
148
  "auto_renew_error",
149
  { data_type => "varchar", is_nullable => 1, size => 32 },
142
  "timestamp",
150
  "timestamp",
143
  {
151
  {
144
    data_type => "timestamp",
152
    data_type => "timestamp",
Lines 233-240 __PACKAGE__->belongs_to( Link Here
233
);
241
);
234
242
235
243
236
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-27 19:03:43
244
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-05-03 04:12:22
237
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3GAOBprPziYcGJF2A5xReg
245
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ozRQZiF1LlOJy4KI53OpFw
238
246
239
__PACKAGE__->belongs_to(
247
__PACKAGE__->belongs_to(
240
    "borrower",
248
    "borrower",
(-)a/Koha/Schema/Result/OldIssue.pm (-3 / +10 lines)
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
- 

Return to bug 15705