mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
* Add required column * Pass through providerd * Pass the required property down * Optional * Fix * Fix * Fix * fix * CLI create: support for optional fields * Use HTML API to mark fields required * Fix * Improve validation * more fixes * make fmt * Fix * WIP * Fix: test * CLI update tets * OptionalParameterAdded * Fix: migration
4 lines
249 B
SQL
4 lines
249 B
SQL
ALTER TABLE template_version_parameters ADD COLUMN required boolean NOT NULL DEFAULT true; -- default: true, as so far every parameter should be marked as required
|
|
|
|
COMMENT ON COLUMN template_version_parameters.required IS 'Is parameter required?';
|