Files
teamvis-selfhost/supabase/migrations/0020_calendar_embed.sql
T
2026-06-25 19:54:40 +02:00

11 lines
482 B
SQL

-- Calendar-Embed: pro Mitarbeiter wählbar, ob calendar_url als Link
-- oder als eingebettetes Iframe auf der Karte erscheint.
-- ====================================================================
-- Embed nur für vertrauenswürdige Domains (Cal.com, Calendly,
-- Microsoft Bookings) — die Liste prüft die App.
alter table public.employees
add column if not exists calendar_embed boolean not null default false;
grant select (calendar_embed) on public.employees to anon;