Skip to content

Commit

Permalink
feat: add chain_id col to projects
Browse files Browse the repository at this point in the history
  • Loading branch information
aeolianeth committed Sep 14, 2024
1 parent be5f0b6 commit f809ddf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion supabase/migrations/20240913212503_project_pv_v4.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ DROP CONSTRAINT projects_pv_check;

ALTER TABLE public.projects
ADD CONSTRAINT projects_pv_check
CHECK (pv IN ('1', '2', '4'));
CHECK (pv IN ('1', '2', '4'));

ALTER TABLE public.projects
add COLUMN "chain_id" int

0 comments on commit f809ddf

Please sign in to comment.