From d7f501bb3399b4c9266f3e318cd34477dde77388 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Thu, 2 Aug 2018 02:19:42 +0200 Subject: [PATCH] Bug 21144: Add ROADTYPE to default authorised values categories The ROADTYPE category was missing from the default list of authorised value categories available. To test: - Verify ROADTYPE is not listed as authorised value category - Apply patch and run database update - Verify ROADTYPE is now listed - Add an entry, for example: AV = Avenue - Add or edit a patron, verify a pull down with your entry shows on the form. --- installer/data/mysql/atomicupdate/bug21144_roadtype.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug21144_roadtype.sql diff --git a/installer/data/mysql/atomicupdate/bug21144_roadtype.sql b/installer/data/mysql/atomicupdate/bug21144_roadtype.sql new file mode 100644 index 0000000000..c162be977c --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug21144_roadtype.sql @@ -0,0 +1,3 @@ +INSERT IGNORE INTO authorised_value_categories (category_name) VALUES ('ROADTYPE'); + +--Bug 21144: Add ROADTYPE to default authorised values categories -- 2.17.1