From 9f9b12e859be38a92f9c88589a8d95b50f7ff651 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 24 Feb 2023 17:18:37 -0300 Subject: [PATCH] Bug 22428: DBIC schema Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 337ac711679889c01c71772fe438cadfc39231fe) Signed-off-by: Jacob O'Mara --- Koha/Schema/Result/MarcModificationTemplateAction.pm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Koha/Schema/Result/MarcModificationTemplateAction.pm b/Koha/Schema/Result/MarcModificationTemplateAction.pm index 6523850ee5..a39a02ef7b 100644 --- a/Koha/Schema/Result/MarcModificationTemplateAction.pm +++ b/Koha/Schema/Result/MarcModificationTemplateAction.pm @@ -66,9 +66,8 @@ __PACKAGE__->table("marc_modification_template_actions"); =head2 field_value - data_type: 'varchar' + data_type: 'text' is_nullable: 1 - size: 100 =head2 to_field @@ -170,7 +169,7 @@ __PACKAGE__->add_columns( "from_subfield", { data_type => "varchar", is_nullable => 1, size => 1 }, "field_value", - { data_type => "varchar", is_nullable => 1, size => 100 }, + { data_type => "text", is_nullable => 1 }, "to_field", { data_type => "varchar", is_nullable => 1, size => 3 }, "to_subfield", @@ -235,8 +234,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-07-19 17:32:57 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dAUr9aGlNZleldYbjJHdmw +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-02-24 20:18:23 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:yDK2nFt+Fj3UuXAij1UwQw # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.39.2