Merge branch 'main' into test/ci
CI / test (pull_request) Failing after 44s

This commit is contained in:
2026-03-10 16:04:57 +00:00
2 changed files with 44 additions and 1 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ uri = "pg-functions://postgres/public/custom_access_token_hook"
[functions.openai-webhook-responses]
enabled = true
verify_jwt = true
verify_jwt = false
import_map = "./functions/openai-webhook-responses/deno.json"
# Uncomment to specify a custom file path to the entrypoint.
# Supported file extensions are: .ts, .js, .mjs, .jsx, .tsx
@@ -0,0 +1,43 @@
drop view if exists "public"."plantilla_asignatura";
alter table "public"."asignaturas" drop column "criterios_de_evaluacion";
create or replace view "public"."plantilla_asignatura" as SELECT asignaturas.id AS asignatura_id,
struct.id AS estructura_id,
struct.template_id
FROM (public.asignaturas
JOIN public.estructuras_asignatura struct ON ((asignaturas.estructura_id = struct.id)));
grant delete on table "public"."asignatura_mensajes_ia" to "postgres";
grant insert on table "public"."asignatura_mensajes_ia" to "postgres";
grant references on table "public"."asignatura_mensajes_ia" to "postgres";
grant select on table "public"."asignatura_mensajes_ia" to "postgres";
grant trigger on table "public"."asignatura_mensajes_ia" to "postgres";
grant truncate on table "public"."asignatura_mensajes_ia" to "postgres";
grant update on table "public"."asignatura_mensajes_ia" to "postgres";
grant delete on table "public"."plan_mensajes_ia" to "postgres";
grant insert on table "public"."plan_mensajes_ia" to "postgres";
grant references on table "public"."plan_mensajes_ia" to "postgres";
grant select on table "public"."plan_mensajes_ia" to "postgres";
grant trigger on table "public"."plan_mensajes_ia" to "postgres";
grant truncate on table "public"."plan_mensajes_ia" to "postgres";
grant update on table "public"."plan_mensajes_ia" to "postgres";
alter publication supabase_realtime add table asignatura_mensajes_ia;
alter publication supabase_realtime add table plan_mensajes_ia;