This manifested in errors thrown while manipulating recurring fines due to the
expectation that the sequence would be named differently than it was.
git-svn-id: svn://svn.open-ils.org/ILS/trunk@15504
dcc99617-32d9-48b4-a31d-
7c20da2025e4
UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recuring(.*)$', E'\\1recurring\\2') WHERE data LIKE '%recuring%';
UPDATE reporter.template SET data = REGEXP_REPLACE(data, E'^(.*)recurance(.*)$', E'\\1recurrence\\2') WHERE data LIKE '%recurance%';
+-- Update the sequence associated with the table
+ALTER TABLE config.rule_recuring_fine_id_seq RENAME TO rule_recurring_fine_id_seq;
+
COMMIT;