The "new" WSL images need a WSL suffix. Currently this is managed on a per-instance basis but it's a bit of work to sync across them. Instead add it be default. Signed-off-by: Simon de Vlieger <supakeen@redhat.com>
8 lines
258 B
PL/PgSQL
8 lines
258 B
PL/PgSQL
-- upgrade script to migrate the Koji database schema
|
|
-- from version 1.36 to 1.37
|
|
|
|
BEGIN;
|
|
|
|
INSERT INTO archivetypes (name, description, extensions) VALUES ('wsl', 'Compressed tarball for Windows Subsystem for Linux', 'wsl') ON CONFLICT DO NOTHING;
|
|
|
|
COMMIT;
|