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

(-)a/Koha/Schema/Result/Illrequestattribute.pm (-4 / +15 lines)
Lines 32-37 __PACKAGE__->table("illrequestattributes"); Link Here
32
32
33
ILL request number
33
ILL request number
34
34
35
=head2 backend
36
37
  data_type: 'varchar'
38
  is_nullable: 0
39
  size: 80
40
41
API ILL backend name
42
35
=head2 type
43
=head2 type
36
44
37
  data_type: 'varchar'
45
  data_type: 'varchar'
Lines 65-70 __PACKAGE__->add_columns( Link Here
65
    is_foreign_key => 1,
73
    is_foreign_key => 1,
66
    is_nullable => 0,
74
    is_nullable => 0,
67
  },
75
  },
76
  "backend",
77
  { data_type => "varchar", is_nullable => 0, size => 80 },
68
  "type",
78
  "type",
69
  { data_type => "varchar", is_nullable => 0, size => 200 },
79
  { data_type => "varchar", is_nullable => 0, size => 200 },
70
  "value",
80
  "value",
Lines 79-91 __PACKAGE__->add_columns( Link Here
79
89
80
=item * L</illrequest_id>
90
=item * L</illrequest_id>
81
91
92
=item * L</backend>
93
82
=item * L</type>
94
=item * L</type>
83
95
84
=back
96
=back
85
97
86
=cut
98
=cut
87
99
88
__PACKAGE__->set_primary_key("illrequest_id", "type");
100
__PACKAGE__->set_primary_key("illrequest_id", "backend", "type");
89
101
90
=head1 RELATIONS
102
=head1 RELATIONS
91
103
Lines 105-112 __PACKAGE__->belongs_to( Link Here
105
);
117
);
106
118
107
119
108
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
120
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-06-09 11:54:42
109
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qNhL5kiGVR8WroCHQY5DyQ
121
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ow8+a/KMNgMqYLdECtKY+g
110
122
111
__PACKAGE__->add_columns(
123
__PACKAGE__->add_columns(
112
    '+readonly' => { is_boolean => 1 }
124
    '+readonly' => { is_boolean => 1 }
113
- 

Return to bug 33970