capsul-flask/capsulflask/schema_migrations/22_up_os_updates.sql

14 lines
645 B
SQL

INSERT INTO os_images (id, template_image_file_name, description, deprecated)
VALUES ('rockylinux', 'rockylinux/8/root.img.qcow2', 'Rocky Linux 8', FALSE);
INSERT INTO os_images (id, template_image_file_name, description, deprecated)
VALUES ('alpine315', 'alpine/3.15/root.img.qcow2', 'Alpine Linux 3.15', FALSE);
INSERT INTO os_images (id, template_image_file_name, description, deprecated)
VALUES ('debian11', 'debian/11/root.img.qcow2', 'Debian 11 (bullseye)', FALSE);
UPDATE os_images SET deprecated = TRUE WHERE id = 'debian10';
UPDATE os_images SET deprecated = TRUE WHERE id = 'alpine313';
UPDATE schemaversion SET version = 22;