feat: actualizar Tablero CDC con administracion de listas

This commit is contained in:
2026-08-13 18:21:34 -04:00
parent f4f6ee23df
commit 0567c666d3
65 changed files with 8120 additions and 1863 deletions
@@ -0,0 +1,23 @@
-- =========================================================
-- TABLERO CDC - Permisos Alicia Thaía Reyes
-- Ejecutar si Alicia debe tarifar/ver montos internos y eliminar duplicados.
-- No toca proyectos, links, tarifario ni n8n.
-- =========================================================
update public.tablero_cdc_allowed_users
set
can_manage_internal_pricing = true,
can_delete_projects = true,
updated_at = now()
where lower(email) = lower('areyes@gomezleemarketing.com');
select
email,
full_name,
is_active,
can_manage_internal_pricing,
can_delete_projects,
can_control_pricing_summary,
updated_at
from public.tablero_cdc_allowed_users
where lower(email) = lower('areyes@gomezleemarketing.com');