fix(coderd/database): add missing v prefix to provisioner_daemons.api_version (#11385)

This commit is contained in:
Cian Johnston
2024-01-03 14:11:02 +00:00
committed by GitHub
parent 068e730046
commit f80a1cf3c8
4 changed files with 12 additions and 2 deletions
+1 -1
View File
@@ -537,7 +537,7 @@ CREATE TABLE provisioner_daemons (
tags jsonb DEFAULT '{}'::jsonb NOT NULL,
last_seen_at timestamp with time zone,
version text DEFAULT ''::text NOT NULL,
api_version text DEFAULT '1.0'::text NOT NULL
api_version text DEFAULT 'v1.0'::text NOT NULL
);
COMMENT ON COLUMN provisioner_daemons.api_version IS 'The API version of the provisioner daemon';