From 234b8a256232f25217d40e2edc44a00db891e1a0 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 20 Jan 2020 13:33:58 +0000 Subject: [PATCH] Bug 21520: (RM follow-up) Add missed schema update Signed-off-by: Martin Renvoize --- Koha/Schema/Result/OaiSetsMapping.pm | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Koha/Schema/Result/OaiSetsMapping.pm b/Koha/Schema/Result/OaiSetsMapping.pm index 2ba58edade..aa0d7dbe4a 100644 --- a/Koha/Schema/Result/OaiSetsMapping.pm +++ b/Koha/Schema/Result/OaiSetsMapping.pm @@ -32,13 +32,12 @@ __PACKAGE__->table("oai_sets_mappings"); =head2 rule_order data_type: 'integer' - is_nullable: 0 + is_nullable: 1 =head2 rule_operator data_type: 'varchar' - default_value: 'or' - is_nullable: 0 + is_nullable: 1 size: 3 =head2 marcfield @@ -72,9 +71,9 @@ __PACKAGE__->add_columns( "set_id", { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, "rule_order", - { data_type => "integer", is_nullable => 0 }, + { data_type => "integer", is_nullable => 1 }, "rule_operator", - { data_type => "varchar", default_value => "or", is_nullable => 0, size => 3 }, + { data_type => "varchar", is_nullable => 1, size => 3 }, "marcfield", { data_type => "char", is_nullable => 0, size => 3 }, "marcsubfield", @@ -108,8 +107,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-01-15 16:27:11 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:70uqCB/wqEodblvsbKKVvA +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-01-17 14:57:11 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WiJev30SDAqddxO6moz/7A # You can replace this text with custom content, and it will be preserved on regeneration -- 2.11.4.GIT