chore: persist template import terraform plan in postgres (#17012)

This commit is contained in:
ケイラ
2025-03-24 10:01:50 -06:00
committed by GitHub
parent 445a059da2
commit 5b3eda6719
26 changed files with 491 additions and 257 deletions

View File

@ -0,0 +1,12 @@
insert into
template_version_terraform_values (
template_version_id,
cached_plan,
updated_at
)
select
id,
'{}',
now()
from
template_versions;