32 lines
1016 B
MySQL
32 lines
1016 B
MySQL
|
DELETE FROM os_images WHERE id = 'openbsd68';
|
||
|
DELETE FROM os_images WHERE id = 'alpine312';
|
||
|
|
||
|
UPDATE os_images SET deprecated = FALSE WHERE id = 'openbsd67';
|
||
|
UPDATE os_images SET deprecated = FALSE WHERE id = 'alpine311';
|
||
|
|
||
|
UPDATE os_images SET template_image_file_name = 'ubuntu-18.04-minimal-cloudimg-amd64.img'
|
||
|
WHERE id = 'ubuntu18';
|
||
|
|
||
|
UPDATE os_images SET template_image_file_name = 'openbsd-cloud-2020-05.qcow2'
|
||
|
WHERE id = 'openbsd66';
|
||
|
|
||
|
UPDATE os_images SET template_image_file_name = 'openbsd67.img'
|
||
|
WHERE id = 'openbsd67';
|
||
|
|
||
|
UPDATE os_images SET template_image_file_name = 'ubuntu20.img'
|
||
|
WHERE id = 'ubuntu20';
|
||
|
|
||
|
UPDATE os_images SET template_image_file_name = 'debian10.img'
|
||
|
WHERE id = 'debian10';
|
||
|
|
||
|
UPDATE os_images SET template_image_file_name = 'centos7.img'
|
||
|
WHERE id = 'centos7';
|
||
|
|
||
|
UPDATE os_images SET template_image_file_name = 'centos8.img'
|
||
|
WHERE id = 'centos8';
|
||
|
|
||
|
UPDATE os_images SET template_image_file_name = 'guixsystem-cloud-2020-05.qcow2'
|
||
|
WHERE id = 'guix110';
|
||
|
|
||
|
UPDATE schemaversion SET version = 7;
|