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

(-)a/Koha/Schema/Result/Aqorder.pm (-3 / +11 lines)
Lines 39-44 primary key and unique identifier assigned by Koha to each line Link Here
39
39
40
links the order to the biblio being ordered (biblio.biblionumber)
40
links the order to the biblio being ordered (biblio.biblionumber)
41
41
42
=head2 deleted_biblionumber
43
44
  data_type: 'integer'
45
  is_nullable: 1
46
47
links the order to the deleted bibliographic record (deletedbiblio.biblionumber)
48
42
=head2 entrydate
49
=head2 entrydate
43
50
44
  data_type: 'date'
51
  data_type: 'date'
Lines 438-443 __PACKAGE__->add_columns( Link Here
438
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
445
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
439
  "biblionumber",
446
  "biblionumber",
440
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
447
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
448
  "deleted_biblionumber",
449
  { data_type => "integer", is_nullable => 1 },
441
  "entrydate",
450
  "entrydate",
442
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
451
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
443
  "quantity",
452
  "quantity",
Lines 805-812 Composing rels: L</aqorder_users> -> borrowernumber Link Here
805
__PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber");
814
__PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber");
806
815
807
816
808
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-06 16:45:06
817
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-04 11:24:57
809
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7vMNLDNO0/Bpng9sBFyyBg
818
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BBhTr5XMj2RXPZQgYPQkAA
810
819
811
__PACKAGE__->belongs_to(
820
__PACKAGE__->belongs_to(
812
  "basket",
821
  "basket",
813
- 

Return to bug 33262