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

(-)a/Koha/Schema/Result/Issue.pm (-10 / +2 lines)
Lines 65-76 __PACKAGE__->table("issues"); Link Here
65
  datetime_undef_if_invalid: 1
65
  datetime_undef_if_invalid: 1
66
  is_nullable: 1
66
  is_nullable: 1
67
67
68
=head2 return
69
70
  data_type: 'varchar'
71
  is_nullable: 1
72
  size: 4
73
74
=head2 renewals
68
=head2 renewals
75
69
76
  data_type: 'tinyint'
70
  data_type: 'tinyint'
Lines 130-137 __PACKAGE__->add_columns( Link Here
130
    datetime_undef_if_invalid => 1,
124
    datetime_undef_if_invalid => 1,
131
    is_nullable => 1,
125
    is_nullable => 1,
132
  },
126
  },
133
  "return",
134
  { data_type => "varchar", is_nullable => 1, size => 4 },
135
  "renewals",
127
  "renewals",
136
  { data_type => "tinyint", is_nullable => 1 },
128
  { data_type => "tinyint", is_nullable => 1 },
137
  "auto_renew",
129
  "auto_renew",
Lines 222-229 __PACKAGE__->belongs_to( Link Here
222
);
214
);
223
215
224
216
225
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-11-04 12:00:58
217
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-07 14:25:37
226
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kREecsHr6wZPiokS946BHw
218
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8jFZATc7tlK4Qb5YW8yrrw
227
219
228
__PACKAGE__->belongs_to(
220
__PACKAGE__->belongs_to(
229
    "borrower",
221
    "borrower",
(-)a/Koha/Schema/Result/OldIssue.pm (-11 / +2 lines)
Lines 64-75 __PACKAGE__->table("old_issues"); Link Here
64
  datetime_undef_if_invalid: 1
64
  datetime_undef_if_invalid: 1
65
  is_nullable: 1
65
  is_nullable: 1
66
66
67
=head2 return
68
69
  data_type: 'varchar'
70
  is_nullable: 1
71
  size: 4
72
73
=head2 renewals
67
=head2 renewals
74
68
75
  data_type: 'tinyint'
69
  data_type: 'tinyint'
Lines 129-136 __PACKAGE__->add_columns( Link Here
129
    datetime_undef_if_invalid => 1,
123
    datetime_undef_if_invalid => 1,
130
    is_nullable => 1,
124
    is_nullable => 1,
131
  },
125
  },
132
  "return",
133
  { data_type => "varchar", is_nullable => 1, size => 4 },
134
  "renewals",
126
  "renewals",
135
  { data_type => "tinyint", is_nullable => 1 },
127
  { data_type => "tinyint", is_nullable => 1 },
136
  "auto_renew",
128
  "auto_renew",
Lines 207-214 __PACKAGE__->belongs_to( Link Here
207
);
199
);
208
200
209
201
210
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-04-23 13:04:51
202
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-07 14:25:37
211
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9GdzytyInRcFZns/q0qb3Q
203
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Nqm7crVG/Y5G3kuLAAKdSQ
212
204
213
sub koha_objects_class {
205
sub koha_objects_class {
214
    'Koha::Old::Checkouts';
206
    'Koha::Old::Checkouts';
215
- 

Return to bug 18173