Bug 21730: Add missing PA_CLASS authorized values categories

PA_CLASS is missing from the list of AV category

Test plan:
Execute the update DB entry
Confirm that you now have PA_CLASS in the AV category list

Signed-off-by: Owen Leonard <oleonard@myacpl.org>

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
Jonathan Druart 2018-10-31 17:42:43 -03:00 committed by Nick Clemens
parent c1ec452e5c
commit 9cf79bd038
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,9 @@
$DBversion = 'XXX'; # will be replaced by the RM
if( CheckVersion( $DBversion ) ) {
# you can use $dbh here like:
$dbh->do( "INSERT IGNORE INTO authorised_value_categories (category_name) VALUES ('PA_CLASS');");
SetVersion( $DBversion );
print "Upgrade to $DBversion done (Bug 21730: Add new authorised value category PA_CLASS)\n";
}

View file

@ -16,6 +16,7 @@ INSERT IGNORE INTO authorised_value_categories( category_name )
('TERM'),
('ITEMTYPECAT'),
('PAYMENT_TYPE'),
('PA_CLASS'),
('ROADTYPE');
INSERT IGNORE INTO authorised_value_categories( category_name )