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

(-)a/Koha/Schema/Result/Issue.pm (-2 / +10 lines)
Lines 82-87 __PACKAGE__->table("issues"); Link Here
82
  default_value: 0
82
  default_value: 0
83
  is_nullable: 1
83
  is_nullable: 1
84
84
85
=head2 auto_renew_error
86
87
  data_type: 'varchar'
88
  is_nullable: 1
89
  size: 16
90
85
=head2 timestamp
91
=head2 timestamp
86
92
87
  data_type: 'timestamp'
93
  data_type: 'timestamp'
Lines 136-141 __PACKAGE__->add_columns( Link Here
136
  { data_type => "tinyint", is_nullable => 1 },
142
  { data_type => "tinyint", is_nullable => 1 },
137
  "auto_renew",
143
  "auto_renew",
138
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
144
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
145
  "auto_renew_error",
146
  { data_type => "varchar", is_nullable => 1, size => 16 },
139
  "timestamp",
147
  "timestamp",
140
  {
148
  {
141
    data_type => "timestamp",
149
    data_type => "timestamp",
Lines 222-229 __PACKAGE__->belongs_to( Link Here
222
);
230
);
223
231
224
232
225
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-11-04 12:00:58
233
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-29 15:31:46
226
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kREecsHr6wZPiokS946BHw
234
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/T5nt8qhlT6ocUG6A9JNIw
227
235
228
__PACKAGE__->belongs_to(
236
__PACKAGE__->belongs_to(
229
    "borrower",
237
    "borrower",
(-)a/Koha/Schema/Result/OldIssue.pm (-3 / +10 lines)
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
- 

Return to bug 15705