31 lines
645 B
Markdown
31 lines
645 B
Markdown
# Configuración de Supabase
|
|
|
|
## Base existente
|
|
|
|
La base ya recibió `actualizacion_bamboohr_google_calendar.sql`. Ejecuta ahora una sola vez:
|
|
|
|
```text
|
|
actualizacion_google_chat_sin_whatsapp.sql
|
|
```
|
|
|
|
Este parche agrega Google Chat, desactiva WhatsApp sin borrar datos históricos y actualiza la RPC de recordatorios.
|
|
|
|
## Instalación nueva
|
|
|
|
Ejecuta:
|
|
|
|
```text
|
|
Seguimiento-de-Impuestos-GLM.sql
|
|
```
|
|
|
|
## Accesos
|
|
|
|
```sql
|
|
insert into public.tax_calendar_access (email, full_name)
|
|
values ('nuevo@gomezleemarketing.com', 'Nombre Apellido')
|
|
on conflict (email) do update
|
|
set active = true,
|
|
full_name = excluded.full_name,
|
|
updated_at = now();
|
|
```
|