mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +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
|
|
);
|