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

(-)a/Koha/Schema/Result/OldIssue.pm (-5 / +12 lines)
Lines 23-28 __PACKAGE__->table("old_issues"); Link Here
23
23
24
=head1 ACCESSORS
24
=head1 ACCESSORS
25
25
26
=head2 id
27
28
  data_type: 'integer'
29
  is_auto_increment: 1
30
  is_nullable: 0
31
26
=head2 issue_id
32
=head2 issue_id
27
33
28
  data_type: 'integer'
34
  data_type: 'integer'
Lines 103-108 __PACKAGE__->table("old_issues"); Link Here
103
=cut
109
=cut
104
110
105
__PACKAGE__->add_columns(
111
__PACKAGE__->add_columns(
112
  "id",
113
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
106
  "issue_id",
114
  "issue_id",
107
  { data_type => "integer", is_nullable => 0 },
115
  { data_type => "integer", is_nullable => 0 },
108
  "borrowernumber",
116
  "borrowernumber",
Lines 156-168 __PACKAGE__->add_columns( Link Here
156
164
157
=over 4
165
=over 4
158
166
159
=item * L</issue_id>
167
=item * L</id>
160
168
161
=back
169
=back
162
170
163
=cut
171
=cut
164
172
165
__PACKAGE__->set_primary_key("issue_id");
173
__PACKAGE__->set_primary_key("id");
166
174
167
=head1 RELATIONS
175
=head1 RELATIONS
168
176
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 @ 2017-03-09 15:35:19
211
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9GdzytyInRcFZns/q0qb3Q
219
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4N/RnY1dwjY/b2iMAdAXzQ
212
220
213
sub koha_objects_class {
221
sub koha_objects_class {
214
    'Koha::Old::Checkouts';
222
    'Koha::Old::Checkouts';
215
- 

Return to bug 18185