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

(-)a/Koha/Schema/Result/PreservationProcessingAttributesItem.pm (-7 / +14 lines)
Lines 23-28 __PACKAGE__->table("preservation_processing_attributes_items"); Link Here
23
23
24
=head1 ACCESSORS
24
=head1 ACCESSORS
25
25
26
=head2 processing_attribute_item_id
27
28
  data_type: 'integer'
29
  is_auto_increment: 1
30
  is_nullable: 0
31
32
primary key
33
26
=head2 processing_attribute_id
34
=head2 processing_attribute_id
27
35
28
  data_type: 'integer'
36
  data_type: 'integer'
Lines 50-55 value for this attribute Link Here
50
=cut
58
=cut
51
59
52
__PACKAGE__->add_columns(
60
__PACKAGE__->add_columns(
61
  "processing_attribute_item_id",
62
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
53
  "processing_attribute_id",
63
  "processing_attribute_id",
54
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
64
  { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
55
  "train_item_id",
65
  "train_item_id",
Lines 62-76 __PACKAGE__->add_columns( Link Here
62
72
63
=over 4
73
=over 4
64
74
65
=item * L</processing_attribute_id>
75
=item * L</processing_attribute_item_id>
66
67
=item * L</train_item_id>
68
76
69
=back
77
=back
70
78
71
=cut
79
=cut
72
80
73
__PACKAGE__->set_primary_key("processing_attribute_id", "train_item_id");
81
__PACKAGE__->set_primary_key("processing_attribute_item_id");
74
82
75
=head1 RELATIONS
83
=head1 RELATIONS
76
84
Lines 105-112 __PACKAGE__->belongs_to( Link Here
105
);
113
);
106
114
107
115
108
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-17 18:47:47
116
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-24 13:35:42
109
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CiFAelBwfhQzRX1cL0ssqA
117
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:q7q8ThZAW9HGDWaemSTS3A
110
118
111
sub koha_object_class {
119
sub koha_object_class {
112
    'Koha::Preservation::Train::Item::Attribute';
120
    'Koha::Preservation::Train::Item::Attribute';
113
- 

Return to bug 30708