Skip to content

Commit ed07031

Browse files
committed
Fix primary key
1 parent 93f3690 commit ed07031

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/supabase/contact.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
create table if not exists
22
contact (
3-
id text default uuid_generate_v4 () not null,
3+
id text default uuid_generate_v4 () not null primary key,
44
created_time timestamp with time zone default now(),
55
user_id text,
66
content jsonb

0 commit comments

Comments
 (0)