TeamVis Self-Host-Bundle v0.31.0

This commit is contained in:
TeamVis Release
2026-06-25 16:43:22 +02:00
commit 138502b675
68 changed files with 3766 additions and 0 deletions
@@ -0,0 +1,14 @@
-- Stabsstellen-Flag auf positions.
-- ====================================================================
-- Stabsstellen (DSB, SiBe, ISB, ImSchBe, Brandschutzbeauftragter,
-- Techn. Führungskräfte, Controlling, Ausbilder, …) gehören organisatorisch
-- nicht in die Linien-Hierarchie, sondern hängen seitlich am
-- Verantwortungsträger (meist GF). Im Datenmodell behalten sie ihren
-- parent_id (für die Anbindung), bekommen aber eine andere Edge-Visual
-- in der Visualisierung.
alter table public.positions
add column if not exists is_staff_position boolean not null default false;
create index if not exists positions_is_staff_position_idx
on public.positions (is_staff_position) where is_staff_position = true;