Bug 15069 - items_search_fields.authorised_values_category is still a varchar(32)
Summary: items_search_fields.authorised_values_category is still a varchar(32)
Status: CLOSED FIXED
Alias: None
Product: Koha
Classification: Unclassified
Component: Architecture, internals, and plumbing (show other bugs)
Version: Main
Hardware: All All
: P5 - low normal (vote)
Assignee: Jonathan Druart
QA Contact: Testopia
URL:
Keywords:
Depends on: 13379
Blocks:
  Show dependency treegraph
 
Reported: 2015-10-27 14:28 UTC by Jonathan Druart
Modified: 2016-06-21 21:39 UTC (History)
2 users (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:


Attachments
Bug 15069: Update items_search_fields.authorised_values_category to varchar(32) (1.09 KB, patch)
2015-10-27 14:30 UTC, Jonathan Druart
Details | Diff | Splinter Review
Bug 15069: Update items_search_fields.authorised_values_category to varchar(32) (1.14 KB, patch)
2015-10-27 14:34 UTC, Tomás Cohen Arazi
Details | Diff | Splinter Review

Note You need to log in before you can comment on or make changes to this bug.
Description Jonathan Druart 2015-10-27 14:28:34 UTC
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)
Comment 1 Jonathan Druart 2015-10-27 14:30:52 UTC Comment hidden (obsolete)
Comment 2 Jonathan Druart 2015-10-27 14:31:54 UTC
Should be backported to 3.20.x
Comment 3 Tomás Cohen Arazi 2015-10-27 14:34:41 UTC
Created attachment 44074 [details] [review]
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)

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Comment 4 Tomás Cohen Arazi 2015-10-27 14:57:56 UTC
Patch pushed to master.

Thanks for taking care, Jonathan!