UPDATE schemaversion SET version = 3;

This commit is contained in:
forest 2020-05-19 23:01:01 -05:00
parent af16ef89d1
commit f448dd8bac
1 changed files with 4 additions and 1 deletions

View File

@ -4,4 +4,7 @@ ADD COLUMN deprecated BOOLEAN NOT NULL DEFAULT FALSE;
INSERT INTO os_images (id, template_image_file_name, description, deprecated)
VALUES ('openbsd67', 'openbsd-6.7-x86_64.qcow2', 'OpenBSD 6.7', FALSE);
UPDATE os_images SET deprecated = TRUE WHERE id = 'openbsd66';
UPDATE os_images SET deprecated = TRUE WHERE id = 'openbsd66';
UPDATE schemaversion SET version = 3;