working on support for managing VM state and IP address
This commit is contained in:
7
capsulflask/schema_migrations/21_down_desired_state.sql
Normal file
7
capsulflask/schema_migrations/21_down_desired_state.sql
Normal file
@ -0,0 +1,7 @@
|
||||
|
||||
|
||||
|
||||
ALTER TABLE vms DROP COLUMN desired_state;
|
||||
|
||||
UPDATE schemaversion SET version = 20;
|
||||
|
7
capsulflask/schema_migrations/21_up_desired_state.sql
Normal file
7
capsulflask/schema_migrations/21_up_desired_state.sql
Normal file
@ -0,0 +1,7 @@
|
||||
|
||||
|
||||
|
||||
ALTER TABLE vms ADD COLUMN desired_state TEXT DEFAULT 'running';
|
||||
|
||||
UPDATE schemaversion SET version = 21;
|
||||
|
Reference in New Issue
Block a user