···22 "recipient" text not null,
33 "created_at" timestamp with time zone not null default now(),
44 "read" boolean not null default false,
55- "data" jsonb not null
55+ "data" jsonb not null,
66+ "id" uuid not null
67);
7889910alter table "public"."notifications" enable row level security;
10111111-CREATE UNIQUE INDEX notifications_pkey ON public.notifications USING btree (recipient);
1212+CREATE UNIQUE INDEX notifications_pkey ON public.notifications USING btree (id);
12131314alter table "public"."notifications" add constraint "notifications_pkey" PRIMARY KEY using index "notifications_pkey";
1415