create table
public.quizzes (
id bigint generated by default as identity,
quiz_name text null,
user_id uuid null,
created_at timestamp with time zone not null default now(),
quiz_description text null,
likes bigint null default '0'::bigint,
dislikes bigint null default '0'::bigint,
constraint Quizzes_pkey primary key (id),
constraint quizzes_user_id_fkey foreign key . . .
) tablespace pg_default;
create table
public.quizzes (
id bigint generated by default as identity,
quiz_name text null,
user_id uuid null,
created_at timestamp with time zone not null default now(),
quiz_description text null,
likes bigint null default '0'::bigint,
dislikes bigint null default '0'::bigint,
constraint Quizzes_pkey primary key (id),
constraint quizzes_user_id_fkey foreign key . . .
) tablespace pg_default;