mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 09:32:22 +03:00
ca93cb9062
# Description - Added package manager - Added precommit checks - Rewrote dependency injection of Services and Repositories - Integrate async SQL alchemy engine - Migrate Chat repository to SQLModel - Migrated ChatHistory repository to SQLModel - User SQLModel - Unit test methodology with db rollback - Unit tests ChatRepository - Test ChatService get_history - Brain entity SQL Model - Promp SQLModel - Rewrite chat/{chat_id}/question route - updated docker files and docker compose in dev and production Added `quivr_core` subpackages: - Refactored KnowledgebrainQa - Added Rag service to interface with non-rag dependencies --------- Co-authored-by: aminediro <aminediro@github.com>
67 lines
1.8 KiB
SQL
67 lines
1.8 KiB
SQL
create table "public"."ingestions" (
|
|
"name" text,
|
|
"id" uuid not null default gen_random_uuid()
|
|
);
|
|
|
|
|
|
alter table "public"."ingestions" enable row level security;
|
|
|
|
CREATE UNIQUE INDEX ingestions_pkey ON public.ingestions USING btree (id);
|
|
|
|
alter table "public"."ingestions" add constraint "ingestions_pkey" PRIMARY KEY using index "ingestions_pkey";
|
|
|
|
grant delete on table "public"."ingestions" to "anon";
|
|
|
|
grant insert on table "public"."ingestions" to "anon";
|
|
|
|
grant references on table "public"."ingestions" to "anon";
|
|
|
|
grant select on table "public"."ingestions" to "anon";
|
|
|
|
grant trigger on table "public"."ingestions" to "anon";
|
|
|
|
grant truncate on table "public"."ingestions" to "anon";
|
|
|
|
grant update on table "public"."ingestions" to "anon";
|
|
|
|
grant delete on table "public"."ingestions" to "authenticated";
|
|
|
|
grant insert on table "public"."ingestions" to "authenticated";
|
|
|
|
grant references on table "public"."ingestions" to "authenticated";
|
|
|
|
grant select on table "public"."ingestions" to "authenticated";
|
|
|
|
grant trigger on table "public"."ingestions" to "authenticated";
|
|
|
|
grant truncate on table "public"."ingestions" to "authenticated";
|
|
|
|
grant update on table "public"."ingestions" to "authenticated";
|
|
|
|
grant delete on table "public"."ingestions" to "service_role";
|
|
|
|
grant insert on table "public"."ingestions" to "service_role";
|
|
|
|
grant references on table "public"."ingestions" to "service_role";
|
|
|
|
grant select on table "public"."ingestions" to "service_role";
|
|
|
|
grant trigger on table "public"."ingestions" to "service_role";
|
|
|
|
grant truncate on table "public"."ingestions" to "service_role";
|
|
|
|
grant update on table "public"."ingestions" to "service_role";
|
|
|
|
create policy "INGESTION"
|
|
on "public"."ingestions"
|
|
as permissive
|
|
for all
|
|
to service_role;
|
|
|
|
|
|
create policy "INTEGRATIONS"
|
|
on "public"."integrations"
|
|
as permissive
|
|
for all
|
|
to service_role;
|