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

(-)a/Koha/Schema/Result/Deleteditem.pm (-2 / +18 lines)
Lines 378-383 inventory number (MARC21 952$i) Link Here
378
378
379
Exclude this item from local holds priority
379
Exclude this item from local holds priority
380
380
381
=head2 sort1
382
383
  data_type: 'varchar'
384
  is_nullable: 1
385
  size: 50
386
387
=head2 sort2
388
389
  data_type: 'varchar'
390
  is_nullable: 1
391
  size: 50
392
381
=cut
393
=cut
382
394
383
__PACKAGE__->add_columns(
395
__PACKAGE__->add_columns(
Lines 498-503 __PACKAGE__->add_columns( Link Here
498
  { data_type => "varchar", is_nullable => 1, size => 32 },
510
  { data_type => "varchar", is_nullable => 1, size => 32 },
499
  "exclude_from_local_holds_priority",
511
  "exclude_from_local_holds_priority",
500
  { data_type => "tinyint", is_nullable => 1 },
512
  { data_type => "tinyint", is_nullable => 1 },
513
  "sort1",
514
  { data_type => "varchar", is_nullable => 1, size => 50 },
515
  "sort2",
516
  { data_type => "varchar", is_nullable => 1, size => 50 },
501
);
517
);
502
518
503
=head1 PRIMARY KEY
519
=head1 PRIMARY KEY
Lines 513-520 __PACKAGE__->add_columns( Link Here
513
__PACKAGE__->set_primary_key("itemnumber");
529
__PACKAGE__->set_primary_key("itemnumber");
514
530
515
531
516
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-12 18:18:47
532
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-08-30 10:20:12
517
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6TcVaUWoDdAGfBOr83ZOWQ
533
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:smNohDljysRgcTUzLrXd7Q
518
534
519
__PACKAGE__->add_columns(
535
__PACKAGE__->add_columns(
520
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
536
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
(-)a/Koha/Schema/Result/Item.pm (-3 / +18 lines)
Lines 382-387 inventory number (MARC21 952$i) Link Here
382
382
383
Exclude this item from local holds priority
383
Exclude this item from local holds priority
384
384
385
=head2 sort1
386
387
  data_type: 'varchar'
388
  is_nullable: 1
389
  size: 50
390
391
=head2 sort2
392
393
  data_type: 'varchar'
394
  is_nullable: 1
395
  size: 50
396
385
=cut
397
=cut
386
398
387
__PACKAGE__->add_columns(
399
__PACKAGE__->add_columns(
Lines 512-517 __PACKAGE__->add_columns( Link Here
512
  { data_type => "varchar", is_nullable => 1, size => 32 },
524
  { data_type => "varchar", is_nullable => 1, size => 32 },
513
  "exclude_from_local_holds_priority",
525
  "exclude_from_local_holds_priority",
514
  { data_type => "tinyint", is_nullable => 1 },
526
  { data_type => "tinyint", is_nullable => 1 },
527
  "sort1",
528
  { data_type => "varchar", is_nullable => 1, size => 50 },
529
  "sort2",
530
  { data_type => "varchar", is_nullable => 1, size => 50 },
515
);
531
);
516
532
517
=head1 PRIMARY KEY
533
=head1 PRIMARY KEY
Lines 943-950 __PACKAGE__->might_have( Link Here
943
);
959
);
944
960
945
961
946
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-07-26 17:44:52
962
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-08-30 10:20:12
947
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FHB+BvL4it4HrzlfNCxoKw
963
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9XdMnuuP+gRaNfrKBLovrw
948
964
949
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
965
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
950
966
951
- 

Return to bug 19316