Skip to content

Commit

Permalink
Merge pull request #52 from diggerhq/fix/project-list-types
Browse files Browse the repository at this point in the history
Change types to simple strings
  • Loading branch information
ZIJ authored Sep 16, 2024
2 parents f32735b + 6001fc4 commit fb88e4f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions supabase/migrations/20240916155322_project_string_lists.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ALTER TABLE public.projects
ALTER COLUMN include_patterns TYPE TEXT USING array_to_string(include_patterns, ','),
ALTER COLUMN exclude_patterns TYPE TEXT USING array_to_string(exclude_patterns, ',');

0 comments on commit fb88e4f

Please sign in to comment.