mirror of
https://github.com/coder/coder.git
synced 2025-07-15 22:20:27 +00:00
feat(coderd): store workspace proxy version in the database (#10790)
Stores workspace proxy version in database upon registration.
This commit is contained in:
@ -0,0 +1,3 @@
|
||||
BEGIN;
|
||||
ALTER TABLE workspace_proxies DROP COLUMN version;
|
||||
COMMIT;
|
@ -0,0 +1,3 @@
|
||||
BEGIN;
|
||||
ALTER TABLE workspace_proxies ADD COLUMN version TEXT DEFAULT ''::TEXT NOT NULL;
|
||||
COMMIT;
|
Reference in New Issue
Block a user