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

(-)a/Koha/Schema/Result/Deleteditem.pm (-2 / +10 lines)
Lines 276-281 __PACKAGE__->table("deleteditems"); Link Here
276
  is_nullable: 1
276
  is_nullable: 1
277
  size: 32
277
  size: 32
278
278
279
=head2 link_text
280
281
  data_type: 'varchar'
282
  is_nullable: 1
283
  size: 200
284
279
=cut
285
=cut
280
286
281
__PACKAGE__->add_columns(
287
__PACKAGE__->add_columns(
Lines 380-385 __PACKAGE__->add_columns( Link Here
380
  { data_type => "varchar", is_nullable => 1, size => 32 },
386
  { data_type => "varchar", is_nullable => 1, size => 32 },
381
  "new_status",
387
  "new_status",
382
  { data_type => "varchar", is_nullable => 1, size => 32 },
388
  { data_type => "varchar", is_nullable => 1, size => 32 },
389
  "link_text",
390
  { data_type => "varchar", is_nullable => 1, size => 200 },
383
);
391
);
384
392
385
=head1 PRIMARY KEY
393
=head1 PRIMARY KEY
Lines 395-402 __PACKAGE__->add_columns( Link Here
395
__PACKAGE__->set_primary_key("itemnumber");
403
__PACKAGE__->set_primary_key("itemnumber");
396
404
397
405
398
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-03-31 17:10:17
406
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-01-26 16:30:46
399
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:npNexLgE7AxLp6iVy1FxgQ
407
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0xNeg4z6klkIW5FqWDxZsw
400
408
401
409
402
# You can replace this text with custom content, and it will be preserved on regeneration
410
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Item.pm (-3 / +10 lines)
Lines 280-285 __PACKAGE__->table("items"); Link Here
280
  is_nullable: 1
280
  is_nullable: 1
281
  size: 32
281
  size: 32
282
282
283
=head2 link_text
284
285
  data_type: 'varchar'
286
  is_nullable: 1
287
  size: 200
288
283
=cut
289
=cut
284
290
285
__PACKAGE__->add_columns(
291
__PACKAGE__->add_columns(
Lines 394-399 __PACKAGE__->add_columns( Link Here
394
  { data_type => "varchar", is_nullable => 1, size => 32 },
400
  { data_type => "varchar", is_nullable => 1, size => 32 },
395
  "new_status",
401
  "new_status",
396
  { data_type => "varchar", is_nullable => 1, size => 32 },
402
  { data_type => "varchar", is_nullable => 1, size => 32 },
403
  "link_text",
404
  { data_type => "varchar", is_nullable => 1, size => 200 },
397
);
405
);
398
406
399
=head1 PRIMARY KEY
407
=head1 PRIMARY KEY
Lines 675-682 __PACKAGE__->might_have( Link Here
675
);
683
);
676
684
677
685
678
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-24 13:56:21
686
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-01-26 16:30:46
679
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Vf1sBZrpUo0Cvi896fjNuA
687
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4Rsn87CFIhmmIs2nKLb5Ng
680
688
681
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
689
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
682
690
683
- 

Return to bug 19360