debian-koji/schemas/schema-upgrade-1.36-1.37.sql
Simon de Vlieger d16c16a668
schemas: wsl file suffix
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>
2025-05-30 21:09:54 +02:00

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;