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

(-)a/Koha/Schema/Result/MarcModificationTemplateAction.pm (-6 / +4 lines)
Lines 66-74 __PACKAGE__->table("marc_modification_template_actions"); Link Here
66
66
67
=head2 field_value
67
=head2 field_value
68
68
69
  data_type: 'varchar'
69
  data_type: 'text'
70
  is_nullable: 1
70
  is_nullable: 1
71
  size: 100
72
71
73
=head2 to_field
72
=head2 to_field
74
73
Lines 170-176 __PACKAGE__->add_columns( Link Here
170
  "from_subfield",
169
  "from_subfield",
171
  { data_type => "varchar", is_nullable => 1, size => 1 },
170
  { data_type => "varchar", is_nullable => 1, size => 1 },
172
  "field_value",
171
  "field_value",
173
  { data_type => "varchar", is_nullable => 1, size => 100 },
172
  { data_type => "text", is_nullable => 1 },
174
  "to_field",
173
  "to_field",
175
  { data_type => "varchar", is_nullable => 1, size => 3 },
174
  { data_type => "varchar", is_nullable => 1, size => 3 },
176
  "to_subfield",
175
  "to_subfield",
Lines 235-242 __PACKAGE__->belongs_to( Link Here
235
);
234
);
236
235
237
236
238
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-07-19 17:32:57
237
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-02-21 10:26:49
239
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dAUr9aGlNZleldYbjJHdmw
238
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:usN1y4uL5XCNy97nf70FHQ
240
239
241
240
242
# You can replace this text with custom code or comments, and it will be preserved on regeneration
241
# You can replace this text with custom code or comments, and it will be preserved on regeneration
243
- 

Return to bug 22428