Skip to content

Commit

Permalink
fix(apps/chat-with-pdf): fix create extension statement
Browse files Browse the repository at this point in the history
  • Loading branch information
dartilesm committed Sep 14, 2024
1 parent 9522e4e commit ae32515
Showing 1 changed file with 1 addition and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
create extension if not exists "vector" with schema "public" version '0.7.0';
create extension vector with schema extensions;

create table "public"."Document" (
"id" text not null default gen_random_uuid(),
Expand Down Expand Up @@ -235,20 +235,6 @@ grant truncate on table "public"."DocumentSections" to "service_role";

grant update on table "public"."DocumentSections" to "service_role";

grant delete on table "public"."DocumentSections" to "supabase_functions_admin";

grant insert on table "public"."DocumentSections" to "supabase_functions_admin";

grant references on table "public"."DocumentSections" to "supabase_functions_admin";

grant select on table "public"."DocumentSections" to "supabase_functions_admin";

grant trigger on table "public"."DocumentSections" to "supabase_functions_admin";

grant truncate on table "public"."DocumentSections" to "supabase_functions_admin";

grant update on table "public"."DocumentSections" to "supabase_functions_admin";

grant delete on table "public"."profiles" to "anon";

grant insert on table "public"."profiles" to "anon";
Expand Down

0 comments on commit ae32515

Please sign in to comment.