From f448dd8bac0536f6726bfe3d9b23e36fdd5e4aac Mon Sep 17 00:00:00 2001 From: forest Date: Tue, 19 May 2020 23:01:01 -0500 Subject: [PATCH] UPDATE schemaversion SET version = 3; --- capsulflask/schema_migrations/03_up_openbsd67.sql | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/capsulflask/schema_migrations/03_up_openbsd67.sql b/capsulflask/schema_migrations/03_up_openbsd67.sql index ea9de14..044772c 100644 --- a/capsulflask/schema_migrations/03_up_openbsd67.sql +++ b/capsulflask/schema_migrations/03_up_openbsd67.sql @@ -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'; \ No newline at end of file +UPDATE os_images SET deprecated = TRUE WHERE id = 'openbsd66'; + + +UPDATE schemaversion SET version = 3; \ No newline at end of file