Add raw-gz and compressed QCOW2 archive types.

This commit is contained in:
Ben Howard 2019-06-04 11:31:46 -06:00 committed by Mike McLean
parent 90464796e0
commit 8d0624bf2f
2 changed files with 13 additions and 1 deletions

View file

@ -0,0 +1,11 @@
-- upgrade script to migrate the Koji database schema
-- from version 1.18 to 1.19
BEGIN;
-- add compressed raw-gzip and compressed qcow2 images
insert into archivetypes (name, description, extensions) values ('raw-gz', 'GZIP compressed raw disk image', 'raw.gz');
insert into archivetypes (name, description, extensions) values ('qcow2-compressed', 'Compressed QCOW2 image', 'qcow2.gz qcow2.xz');
COMMIT;