11 lines
482 B
SQL
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;
|