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

(-)a/Koha/Schema/Result/Biblioitem.pm (-4 / +4 lines)
Lines 211-217 __PACKAGE__->table("biblioitems"); Link Here
211
=head2 marcxml
211
=head2 marcxml
212
212
213
  data_type: 'longtext'
213
  data_type: 'longtext'
214
  is_nullable: 0
214
  is_nullable: 1
215
215
216
=cut
216
=cut
217
217
Lines 293-299 __PACKAGE__->add_columns( Link Here
293
  "totalissues",
293
  "totalissues",
294
  { data_type => "integer", is_nullable => 1 },
294
  { data_type => "integer", is_nullable => 1 },
295
  "marcxml",
295
  "marcxml",
296
  { data_type => "longtext", is_nullable => 0 },
296
  { data_type => "longtext", is_nullable => 1 },
297
);
297
);
298
298
299
=head1 PRIMARY KEY
299
=head1 PRIMARY KEY
Lines 341-348 __PACKAGE__->has_many( Link Here
341
);
341
);
342
342
343
343
344
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-10-24 09:58:16
344
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-02-24 14:19:57
345
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5gIBkvhOBzIK8vTrUe8MVw
345
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:A/4lKYlKWWd8TcMVzMRtCg
346
346
347
347
348
# You can replace this text with custom content, and it will be preserved on regeneration
348
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Deletedbiblioitem.pm (-5 / +4 lines)
Lines 210-216 __PACKAGE__->table("deletedbiblioitems"); Link Here
210
=head2 marcxml
210
=head2 marcxml
211
211
212
  data_type: 'longtext'
212
  data_type: 'longtext'
213
  is_nullable: 0
213
  is_nullable: 1
214
214
215
=cut
215
=cut
216
216
Lines 287-293 __PACKAGE__->add_columns( Link Here
287
  "totalissues",
287
  "totalissues",
288
  { data_type => "integer", is_nullable => 1 },
288
  { data_type => "integer", is_nullable => 1 },
289
  "marcxml",
289
  "marcxml",
290
  { data_type => "longtext", is_nullable => 0 },
290
  { data_type => "longtext", is_nullable => 1 },
291
);
291
);
292
292
293
=head1 PRIMARY KEY
293
=head1 PRIMARY KEY
Lines 303-310 __PACKAGE__->add_columns( Link Here
303
__PACKAGE__->set_primary_key("biblioitemnumber");
303
__PACKAGE__->set_primary_key("biblioitemnumber");
304
304
305
305
306
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-10-24 09:58:16
306
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-02-24 14:19:57
307
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ObIMBOrm2gbpPRMA0yRpLw
307
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:RTMXhtMKvih1zhllHwwwYQ
308
308
309
309
310
# You can replace this text with custom content, and it will be preserved on regeneration
310
# You can replace this text with custom content, and it will be preserved on regeneration
311
- 

Return to bug 13523