From f91fa9a1a44ed260de63593fe5527b4e44a58838 Mon Sep 17 00:00:00 2001 From: j3s Date: Wed, 20 May 2020 18:40:15 -0500 Subject: [PATCH] Deprecate GuixSD for now --- capsulflask/schema_migrations/04_down_guixsd_notready.sql | 1 + capsulflask/schema_migrations/04_up_guixsd_notready.sql | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 capsulflask/schema_migrations/04_down_guixsd_notready.sql create mode 100644 capsulflask/schema_migrations/04_up_guixsd_notready.sql diff --git a/capsulflask/schema_migrations/04_down_guixsd_notready.sql b/capsulflask/schema_migrations/04_down_guixsd_notready.sql new file mode 100644 index 0000000..6d06e92 --- /dev/null +++ b/capsulflask/schema_migrations/04_down_guixsd_notready.sql @@ -0,0 +1 @@ +UPDATE os_images SET deprecated = FALSE WHERE id = 'guixsd110'; diff --git a/capsulflask/schema_migrations/04_up_guixsd_notready.sql b/capsulflask/schema_migrations/04_up_guixsd_notready.sql new file mode 100644 index 0000000..f68837e --- /dev/null +++ b/capsulflask/schema_migrations/04_up_guixsd_notready.sql @@ -0,0 +1,3 @@ +UPDATE os_images SET deprecated = TRUE WHERE id = 'guixsd110'; + +UPDATE schemaversion SET version = 4;