Skip to content

Commit f70e927

Browse files
authored
Merge pull request #49 from diggerhq/feat/project-fields
Add more project fields
2 parents b737be7 + 5a48f0c commit f70e927

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CREATE TYPE iac_type_enum AS ENUM ('terraform', 'terragrunt', 'opentofu');
2+
3+
ALTER TABLE public.projects
4+
ADD COLUMN IF NOT EXISTS iac_type iac_type_enum DEFAULT 'terraform'::iac_type_enum,
5+
ADD COLUMN IF NOT EXISTS workspace TEXT,
6+
ADD COLUMN IF NOT EXISTS workflow_file TEXT,
7+
ADD COLUMN IF NOT EXISTS include_patterns TEXT[],
8+
ADD COLUMN IF NOT EXISTS exclude_patterns TEXT[];

0 commit comments

Comments
 (0)