We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f32735b + 6001fc4 commit fb88e4fCopy full SHA for fb88e4f
supabase/migrations/20240916155322_project_string_lists.sql
@@ -0,0 +1,3 @@
1
+ALTER TABLE public.projects
2
+ ALTER COLUMN include_patterns TYPE TEXT USING array_to_string(include_patterns, ','),
3
+ ALTER COLUMN exclude_patterns TYPE TEXT USING array_to_string(exclude_patterns, ',');
0 commit comments