Skip to content

Commit

Permalink
:feat remove NOT NULL constraint from display_name column on attendees
Browse files Browse the repository at this point in the history
  • Loading branch information
KannoStanfoot committed Jul 4, 2024
1 parent f45ac28 commit 4c14154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion supabase/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ create table if not exists public.attendees (
email varchar(100) not null unique,
avatar_url varchar(500) not null,
provider varchar(20) not null,
display_name varchar(24) not null,
display_name varchar(24,
role varchar(16),
receipt_id varchar(20) not null unique,
activated_at timestamp with time zone,
Expand Down

0 comments on commit 4c14154

Please sign in to comment.