Line 0
Link Here
|
0 |
- |
1 |
use utf8; |
|
|
2 |
package Koha::Schema::Result::OaiHarvesterRequest; |
3 |
|
4 |
# Created by DBIx::Class::Schema::Loader |
5 |
# DO NOT MODIFY THE FIRST PART OF THIS FILE |
6 |
|
7 |
=head1 NAME |
8 |
|
9 |
Koha::Schema::Result::OaiHarvesterRequest |
10 |
|
11 |
=cut |
12 |
|
13 |
use strict; |
14 |
use warnings; |
15 |
|
16 |
use base 'DBIx::Class::Core'; |
17 |
|
18 |
=head1 TABLE: C<oai_harvester_requests> |
19 |
|
20 |
=cut |
21 |
|
22 |
__PACKAGE__->table("oai_harvester_requests"); |
23 |
|
24 |
=head1 ACCESSORS |
25 |
|
26 |
=head2 id |
27 |
|
28 |
data_type: 'integer' |
29 |
extra: {unsigned => 1} |
30 |
is_auto_increment: 1 |
31 |
is_nullable: 0 |
32 |
|
33 |
=head2 uuid |
34 |
|
35 |
data_type: 'varchar' |
36 |
is_nullable: 0 |
37 |
size: 45 |
38 |
|
39 |
=head2 oai_verb |
40 |
|
41 |
data_type: 'varchar' |
42 |
is_nullable: 0 |
43 |
size: 45 |
44 |
|
45 |
=head2 oai_metadataPrefix |
46 |
|
47 |
accessor: 'oai_metadata_prefix' |
48 |
data_type: 'varchar' |
49 |
is_nullable: 0 |
50 |
size: 255 |
51 |
|
52 |
=head2 oai_identifier |
53 |
|
54 |
data_type: 'varchar' |
55 |
is_nullable: 1 |
56 |
size: 255 |
57 |
|
58 |
=head2 oai_from |
59 |
|
60 |
data_type: 'varchar' |
61 |
is_nullable: 1 |
62 |
size: 45 |
63 |
|
64 |
=head2 oai_until |
65 |
|
66 |
data_type: 'varchar' |
67 |
is_nullable: 1 |
68 |
size: 45 |
69 |
|
70 |
=head2 oai_set |
71 |
|
72 |
data_type: 'varchar' |
73 |
is_nullable: 1 |
74 |
size: 255 |
75 |
|
76 |
=head2 http_url |
77 |
|
78 |
data_type: 'varchar' |
79 |
is_nullable: 1 |
80 |
size: 255 |
81 |
|
82 |
=head2 http_username |
83 |
|
84 |
data_type: 'varchar' |
85 |
is_nullable: 1 |
86 |
size: 255 |
87 |
|
88 |
=head2 http_password |
89 |
|
90 |
data_type: 'varchar' |
91 |
is_nullable: 1 |
92 |
size: 255 |
93 |
|
94 |
=head2 http_realm |
95 |
|
96 |
data_type: 'varchar' |
97 |
is_nullable: 1 |
98 |
size: 255 |
99 |
|
100 |
=head2 import_filter |
101 |
|
102 |
data_type: 'varchar' |
103 |
is_nullable: 0 |
104 |
size: 255 |
105 |
|
106 |
=head2 import_framework_code |
107 |
|
108 |
data_type: 'varchar' |
109 |
is_nullable: 0 |
110 |
size: 4 |
111 |
|
112 |
=head2 import_record_type |
113 |
|
114 |
data_type: 'enum' |
115 |
extra: {list => ["biblio","auth","holdings"]} |
116 |
is_nullable: 0 |
117 |
|
118 |
=head2 import_matcher_code |
119 |
|
120 |
data_type: 'varchar' |
121 |
is_nullable: 1 |
122 |
size: 10 |
123 |
|
124 |
=head2 interval |
125 |
|
126 |
data_type: 'integer' |
127 |
extra: {unsigned => 1} |
128 |
is_nullable: 0 |
129 |
|
130 |
=head2 name |
131 |
|
132 |
data_type: 'varchar' |
133 |
is_nullable: 0 |
134 |
size: 45 |
135 |
|
136 |
=cut |
137 |
|
138 |
__PACKAGE__->add_columns( |
139 |
"id", |
140 |
{ |
141 |
data_type => "integer", |
142 |
extra => { unsigned => 1 }, |
143 |
is_auto_increment => 1, |
144 |
is_nullable => 0, |
145 |
}, |
146 |
"uuid", |
147 |
{ data_type => "varchar", is_nullable => 0, size => 45 }, |
148 |
"oai_verb", |
149 |
{ data_type => "varchar", is_nullable => 0, size => 45 }, |
150 |
"oai_metadataPrefix", |
151 |
{ |
152 |
accessor => "oai_metadata_prefix", |
153 |
data_type => "varchar", |
154 |
is_nullable => 0, |
155 |
size => 255, |
156 |
}, |
157 |
"oai_identifier", |
158 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
159 |
"oai_from", |
160 |
{ data_type => "varchar", is_nullable => 1, size => 45 }, |
161 |
"oai_until", |
162 |
{ data_type => "varchar", is_nullable => 1, size => 45 }, |
163 |
"oai_set", |
164 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
165 |
"http_url", |
166 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
167 |
"http_username", |
168 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
169 |
"http_password", |
170 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
171 |
"http_realm", |
172 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
173 |
"import_filter", |
174 |
{ data_type => "varchar", is_nullable => 0, size => 255 }, |
175 |
"import_framework_code", |
176 |
{ data_type => "varchar", is_nullable => 0, size => 4 }, |
177 |
"import_record_type", |
178 |
{ |
179 |
data_type => "enum", |
180 |
extra => { list => ["biblio", "auth", "holdings"] }, |
181 |
is_nullable => 0, |
182 |
}, |
183 |
"import_matcher_code", |
184 |
{ data_type => "varchar", is_nullable => 1, size => 10 }, |
185 |
"interval", |
186 |
{ data_type => "integer", extra => { unsigned => 1 }, is_nullable => 0 }, |
187 |
"name", |
188 |
{ data_type => "varchar", is_nullable => 0, size => 45 }, |
189 |
); |
190 |
|
191 |
=head1 PRIMARY KEY |
192 |
|
193 |
=over 4 |
194 |
|
195 |
=item * L</id> |
196 |
|
197 |
=back |
198 |
|
199 |
=cut |
200 |
|
201 |
__PACKAGE__->set_primary_key("id"); |
202 |
|
203 |
|
204 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-11-02 06:45:23 |
205 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:c8IcaxEQMjEZvM4LPzOTKg |
206 |
|
207 |
|
208 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
209 |
1; |