refactor completo + truncate de base de datos + reingenieria dashboard

This commit is contained in:
markosbenitez
2026-06-05 17:13:45 -03:00
parent a17e810ea8
commit 307a54dabc
43 changed files with 1320 additions and 92 deletions

View File

@@ -0,0 +1,6 @@
-- Migration 011: Truncar datos de testing
-- Ejecutado directamente el 2026-06-05 antes del push (tablas en 0 al momento del push).
-- TRUNCATE en tablas ya vacías es idempotente — este archivo solo registra el evento.
BEGIN;
TRUNCATE TABLE public.answers, public.responses, public.consent_records RESTART IDENTITY CASCADE;
COMMIT;