7 lines
336 B
PL/PgSQL
7 lines
336 B
PL/PgSQL
-- 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;
|