mirror of
https://github.com/coder/coder.git
synced 2025-07-15 22:20:27 +00:00
chore: persist template import terraform plan in postgres (#17012)
This commit is contained in:
@ -0,0 +1,5 @@
|
||||
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
|
||||
);
|
Reference in New Issue
Block a user