feat: actualizar dist final con CDC Brief y reaprobacion de rechazados

This commit is contained in:
2026-08-13 10:22:18 -04:00
parent 2e02753ea9
commit 7e41b2f26a
112 changed files with 482 additions and 25603 deletions
-38
View File
@@ -1,38 +0,0 @@
-- =========================================================
-- TABLERO CDC - HABILITAR SUPABASE REALTIME
-- Ejecutar una sola vez en Supabase SQL Editor.
-- Incluye proyectos, links y listas dinámicas.
-- =========================================================
do $$
begin
if not exists (
select 1
from pg_publication_tables
where pubname = 'supabase_realtime'
and schemaname = 'public'
and tablename = 'tablero_cdc_projects'
) then
alter publication supabase_realtime add table public.tablero_cdc_projects;
end if;
if not exists (
select 1
from pg_publication_tables
where pubname = 'supabase_realtime'
and schemaname = 'public'
and tablename = 'tablero_cdc_project_links'
) then
alter publication supabase_realtime add table public.tablero_cdc_project_links;
end if;
if not exists (
select 1
from pg_publication_tables
where pubname = 'supabase_realtime'
and schemaname = 'public'
and tablename = 'tablero_cdc_app_lists'
) then
alter publication supabase_realtime add table public.tablero_cdc_app_lists;
end if;
end $$;