mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
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';
|