mirror of
https://github.com/coder/coder.git
synced 2026-06-03 13:08:25 +00:00
5b0e6bfa2a
Adds column api_version to the provisioner_daemons table. This is distinct from the coderd version, and is used to handle breaking changes in the provisioner daemon API.
4 lines
191 B
SQL
4 lines
191 B
SQL
ALTER TABLE ONLY provisioner_daemons
|
|
ADD COLUMN api_version text NOT NULL DEFAULT '1.0';
|
|
COMMENT ON COLUMN provisioner_daemons.api_version IS 'The API version of the provisioner daemon';
|