columna de color añadida a estados_plan
Deploy Function / deploy (push) Successful in 40s
Deploy Migrations to Production / deploy (push) Successful in 14s
Update database types / deploy (push) Failing after 8s

This commit is contained in:
2026-04-14 10:37:12 -06:00
parent f6a9837b47
commit 1a9465edf2
2 changed files with 6 additions and 5 deletions
@@ -0,0 +1 @@
alter table "public"."estados_plan" add column "color" text;
+5 -5
View File
@@ -2061,11 +2061,11 @@ INSERT INTO "public"."carreras" ("id", "facultad_id", "nombre", "nombre_corto",
-- Data for Name: estados_plan; Type: TABLE DATA; Schema: public; Owner: postgres -- Data for Name: estados_plan; Type: TABLE DATA; Schema: public; Owner: postgres
-- --
INSERT INTO "public"."estados_plan" ("id", "clave", "etiqueta", "orden", "es_final") VALUES INSERT INTO "public"."estados_plan" ("id", "clave", "etiqueta", "orden", "es_final", "color") VALUES
('18f49b67-8077-4371-be6e-2019a3be3562', 'BORRADOR', 'Borrador', 10, false), ('18f49b67-8077-4371-be6e-2019a3be3562', 'BORRADOR', 'Borrador', 10, false, '#cccccc'),
('40b640aa-3ec3-430c-9eb6-90f5ceffbbf7', 'REVISION', 'En revisión', 20, false), ('40b640aa-3ec3-430c-9eb6-90f5ceffbbf7', 'REVISION', 'En revisión', 20, false, '#ffcc00'),
('f01c06c2-1166-46db-9e49-5d74b4190a0e', 'APROBADO', 'Aprobado', 30, true), ('f01c06c2-1166-46db-9e49-5d74b4190a0e', 'APROBADO', 'Aprobado', 30, true, '#00cc66'),
('f2abc804-1d7e-40d5-81bd-02f3a8e48f6f', 'GENERANDO', 'generando', 0, false); ('f2abc804-1d7e-40d5-81bd-02f3a8e48f6f', 'GENERANDO', 'generando', 0, false, '#ff6600');
-- --