We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b737be7 + 5a48f0c commit f70e927Copy full SHA for f70e927
supabase/migrations/20240916134732_add_project_fields.sql
@@ -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