mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
6 lines
222 B
SQL
6 lines
222 B
SQL
create table template_version_terraform_values (
|
|
template_version_id uuid not null unique references template_versions(id) on delete cascade,
|
|
updated_at timestamptz not null default now(),
|
|
cached_plan jsonb not null
|
|
);
|