feat: update subject suggestion guidelines and remove obsolete migration
CI / test (pull_request) Failing after 8s

- Enhanced the subject suggestion guidelines to specify that descriptions must not exceed 200 characters.
- Deleted the migration file for adding conversation_id to asignaturas and the associated view, as it is no longer needed.
This commit is contained in:
2026-02-12 16:45:38 -06:00
parent 2ff587d639
commit 9981b30260
5 changed files with 1654 additions and 1387 deletions
@@ -1,16 +0,0 @@
drop view if exists "public"."plantilla_plan";
alter table "public"."asignaturas" add column "conversation_id" text;
CREATE UNIQUE INDEX asignaturas_conversation_id_key ON public.asignaturas USING btree (conversation_id);
alter table "public"."asignaturas" add constraint "asignaturas_conversation_id_key" UNIQUE using index "asignaturas_conversation_id_key";
create or replace view "public"."plantilla_plan" as SELECT plan.id AS plan_estudio_id,
struct.id AS estructura_id,
struct.template_id
FROM (public.planes_estudio plan
JOIN public.estructuras_plan struct ON ((plan.estructura_id = struct.id)));