Fix primary key

This commit is contained in:
MartinBraquet
2025-10-18 23:31:32 +02:00
parent 93f3690344
commit ed07031539

View File

@@ -1,6 +1,6 @@
create table if not exists
contact (
id text default uuid_generate_v4 () not null,
id text default uuid_generate_v4 () not null primary key,
created_time timestamp with time zone default now(),
user_id text,
content jsonb