@@ -, +, @@ --- .../Result/MarcModificationTemplateAction.pm | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/MarcModificationTemplateAction.pm +++ a/Koha/Schema/Result/MarcModificationTemplateAction.pm @@ -139,6 +139,11 @@ __PACKAGE__->table("marc_modification_template_actions"); data_type: 'text' is_nullable: 1 +=head2 run_xslt + + data_type: 'text' + is_nullable: 1 + =cut __PACKAGE__->add_columns( @@ -196,6 +201,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "description", { data_type => "text", is_nullable => 1 }, + "run_xslt", + { data_type => "text", is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -228,8 +235,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-31 22:03:59 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sl0AD0sWPYcKRjHN3l3eFg +# Created by DBIx::Class::Schema::Loader v0.07036 @ 2014-08-13 14:28:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:n9wwef57fyazjsSly9CaRA # You can replace this text with custom code or comments, and it will be preserved on regeneration --