Files
coder/coderd/database/migrations/000306_template_version_terraform_values.up.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
);