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

(-)a/Koha/Schema/Result/Deleteditem.pm (+16 lines)
Lines 393-398 inventory number (MARC21 952$i) Link Here
393
393
394
Exclude this item from local holds priority
394
Exclude this item from local holds priority
395
395
396
=head2 sort1
397
398
  data_type: 'varchar'
399
  is_nullable: 1
400
  size: 50
401
402
=head2 sort2
403
404
  data_type: 'varchar'
405
  is_nullable: 1
406
  size: 50
407
396
=cut
408
=cut
397
409
398
__PACKAGE__->add_columns(
410
__PACKAGE__->add_columns(
Lines 517-522 __PACKAGE__->add_columns( Link Here
517
  { data_type => "varchar", is_nullable => 1, size => 32 },
529
  { data_type => "varchar", is_nullable => 1, size => 32 },
518
  "exclude_from_local_holds_priority",
530
  "exclude_from_local_holds_priority",
519
  { data_type => "tinyint", is_nullable => 1 },
531
  { data_type => "tinyint", is_nullable => 1 },
532
  "sort1",
533
  { data_type => "varchar", is_nullable => 1, size => 50 },
534
  "sort2",
535
  { data_type => "varchar", is_nullable => 1, size => 50 },
520
);
536
);
521
537
522
=head1 PRIMARY KEY
538
=head1 PRIMARY KEY
(-)a/Koha/Schema/Result/Item.pm (-1 / +16 lines)
Lines 397-402 inventory number (MARC21 952$i) Link Here
397
397
398
Exclude this item from local holds priority
398
Exclude this item from local holds priority
399
399
400
=head2 sort1
401
402
  data_type: 'varchar'
403
  is_nullable: 1
404
  size: 50
405
406
=head2 sort2
407
408
  data_type: 'varchar'
409
  is_nullable: 1
410
  size: 50
411
400
=cut
412
=cut
401
413
402
__PACKAGE__->add_columns(
414
__PACKAGE__->add_columns(
Lines 531-536 __PACKAGE__->add_columns( Link Here
531
  { data_type => "varchar", is_nullable => 1, size => 32 },
543
  { data_type => "varchar", is_nullable => 1, size => 32 },
532
  "exclude_from_local_holds_priority",
544
  "exclude_from_local_holds_priority",
533
  { data_type => "tinyint", is_nullable => 1 },
545
  { data_type => "tinyint", is_nullable => 1 },
546
  "sort1",
547
  { data_type => "varchar", is_nullable => 1, size => 50 },
548
  "sort2",
549
  { data_type => "varchar", is_nullable => 1, size => 50 },
534
);
550
);
535
551
536
=head1 PRIMARY KEY
552
=head1 PRIMARY KEY
537
- 

Return to bug 19316