mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
This pull request builds on the existing migrations and queries to add support for presets to the coder API.
6 lines
179 B
SQL
6 lines
179 B
SQL
ALTER TABLE template_version_presets
|
|
ALTER COLUMN id SET DEFAULT gen_random_uuid();
|
|
|
|
ALTER TABLE template_version_preset_parameters
|
|
ALTER COLUMN id SET DEFAULT gen_random_uuid();
|