blob: 9069c6190f52617afe1cf397d7c05f90d2c5eb45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
-- Deploy guix-data-service:change_locale_values to pg
BEGIN;
UPDATE lint_checker_descriptions SET locale = REPLACE(locale, '.utf8', '.UTF-8');
UPDATE package_metadata_tsvectors SET locale = REPLACE(locale, '.utf8', '.UTF-8');
UPDATE package_descriptions SET locale = REPLACE(locale, '.utf8', '.UTF-8');
UPDATE package_synopsis SET locale = REPLACE(locale, '.utf8', '.UTF-8');
UPDATE lint_warning_messages SET locale = REPLACE(locale, '.utf8', '.UTF-8');
COMMIT;
|