From a13763aed7abc55cfcfbcc12ba5bd06fa1dad107 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 27 Oct 2015 14:29:29 +0000 Subject: [PATCH] Bug 15069: Update items_search_fields.authorised_values_category to varchar(32) This is a follow-up for bug 13379. items_search_fields.authorised_values_category is now a varchar(32) but the updatedatabase.pl did not modify it (changed only on kohastructure.sql) Test plan: SHOW CREATE TABLE items_search_fields before and after this patch. items_search_fields.authorised_values_category should be a varchar(32) --- installer/data/mysql/atomicupdate/bug_15069.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 installer/data/mysql/atomicupdate/bug_15069.sql diff --git a/installer/data/mysql/atomicupdate/bug_15069.sql b/installer/data/mysql/atomicupdate/bug_15069.sql new file mode 100644 index 0000000..fb9f60a --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_15069.sql @@ -0,0 +1 @@ +alter table items_search_fields modify column authorised_values_category varchar(32) default null; -- 2.1.0