Lines 61-66
the id of the marc modification template
Link Here
|
61 |
|
61 |
|
62 |
how to handle duplicate records |
62 |
how to handle duplicate records |
63 |
|
63 |
|
|
|
64 |
=head2 overlay_frameworkcode |
65 |
|
66 |
data_type: 'varchar' |
67 |
default_value: (empty string) |
68 |
is_nullable: 0 |
69 |
size: 50 |
70 |
|
64 |
=head2 nomatch_action |
71 |
=head2 nomatch_action |
65 |
|
72 |
|
66 |
data_type: 'varchar' |
73 |
data_type: 'varchar' |
Lines 69-74
how to handle duplicate records
Link Here
|
69 |
|
76 |
|
70 |
how to handle records where no match is found |
77 |
how to handle records where no match is found |
71 |
|
78 |
|
|
|
79 |
=head2 import_frameworkcode |
80 |
|
81 |
data_type: 'varchar' |
82 |
default_value: (empty string) |
83 |
is_nullable: 0 |
84 |
size: 50 |
85 |
|
72 |
=head2 item_action |
86 |
=head2 item_action |
73 |
|
87 |
|
74 |
data_type: 'varchar' |
88 |
data_type: 'varchar' |
Lines 128-135
__PACKAGE__->add_columns(
Link Here
|
128 |
{ data_type => "integer", is_nullable => 1 }, |
142 |
{ data_type => "integer", is_nullable => 1 }, |
129 |
"overlay_action", |
143 |
"overlay_action", |
130 |
{ data_type => "varchar", is_nullable => 1, size => 50 }, |
144 |
{ data_type => "varchar", is_nullable => 1, size => 50 }, |
|
|
145 |
"overlay_frameworkcode", |
146 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 50 }, |
131 |
"nomatch_action", |
147 |
"nomatch_action", |
132 |
{ data_type => "varchar", is_nullable => 1, size => 50 }, |
148 |
{ data_type => "varchar", is_nullable => 1, size => 50 }, |
|
|
149 |
"import_frameworkcode", |
150 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 50 }, |
133 |
"item_action", |
151 |
"item_action", |
134 |
{ data_type => "varchar", is_nullable => 1, size => 50 }, |
152 |
{ data_type => "varchar", is_nullable => 1, size => 50 }, |
135 |
"parse_items", |
153 |
"parse_items", |
Lines 188-201
__PACKAGE__->has_many(
Link Here
|
188 |
); |
206 |
); |
189 |
|
207 |
|
190 |
|
208 |
|
191 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 |
209 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-08-09 19:11:18 |
192 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:RmvuwPN8RT+tBsxR+Q7unA |
210 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:E8EKtIdYKkf1PT3aFo9trA |
193 |
|
211 |
|
194 |
|
212 |
|
195 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
213 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
196 |
|
214 |
|
197 |
__PACKAGE__->add_columns( |
215 |
__PACKAGE__->add_columns( |
198 |
'+parse_items' => { is_boolean => 1 }, |
216 |
'+parse_items' => { is_boolean => 1 }, |
199 |
); |
217 |
); |
200 |
|
218 |
|
201 |
=head2 koha_object_class |
219 |
=head2 koha_object_class |
202 |
- |
|
|