From 00f241b7cb4550bb646e702924948482be2a13cc Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Mon, 9 Apr 2018 09:08:59 +0200 Subject: [PATCH] Bug 9701: (QA follow-up) DBIx schema changes Content-Type: text/plain; charset=utf-8 Changes in MarcTagStructure.pm Signed-off-by: Marcel de Rooy --- Koha/Schema/Result/MarcTagStructure.pm | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/MarcTagStructure.pm b/Koha/Schema/Result/MarcTagStructure.pm index 8873ef3..4f16468 100644 --- a/Koha/Schema/Result/MarcTagStructure.pm +++ b/Koha/Schema/Result/MarcTagStructure.pm @@ -62,6 +62,20 @@ __PACKAGE__->table("marc_tag_structure"); is_nullable: 1 size: 10 +=head2 ind1_defaultvalue + + data_type: 'varchar' + default_value: (empty string) + is_nullable: 0 + size: 1 + +=head2 ind2_defaultvalue + + data_type: 'varchar' + default_value: (empty string) + is_nullable: 0 + size: 1 + =head2 frameworkcode data_type: 'varchar' @@ -84,6 +98,10 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "authorised_value", { data_type => "varchar", is_nullable => 1, size => 10 }, + "ind1_defaultvalue", + { data_type => "varchar", default_value => "", is_nullable => 0, size => 1 }, + "ind2_defaultvalue", + { data_type => "varchar", default_value => "", is_nullable => 0, size => 1 }, "frameworkcode", { data_type => "varchar", default_value => "", is_nullable => 0, size => 4 }, ); @@ -103,8 +121,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("frameworkcode", "tagfield"); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TvdQBCX3rEhJxxqGcqrpWw +# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-04-09 09:07:51 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6EvGakEpGreV0hom7P6Efg # You can replace this text with custom content, and it will be preserved on regeneration -- 2.1.4