working on support for managing VM state and IP address

This commit is contained in:
2021-12-05 16:47:37 -06:00
parent 9d74c99ce8
commit cc349d266f
16 changed files with 225 additions and 57 deletions

View File

@ -0,0 +1,7 @@
ALTER TABLE vms DROP COLUMN desired_state;
UPDATE schemaversion SET version = 20;

View File

@ -0,0 +1,7 @@
ALTER TABLE vms ADD COLUMN desired_state TEXT DEFAULT 'running';
UPDATE schemaversion SET version = 21;