forked from 3wordchant/capsul-flask
7 lines
264 B
SQL
7 lines
264 B
SQL
INSERT INTO os_images (id, template_image_file_name, description, deprecated)
|
|
VALUES ('alpine313', 'alpine/3.13/root.img.qcow2', 'Alpine Linux 3.13', FALSE);
|
|
|
|
UPDATE os_images SET deprecated = TRUE WHERE id = 'alpine312';
|
|
|
|
UPDATE schemaversion SET version = 11;
|