-- RAPPORT-HOST — Konto-Profilfelder (für "Mein Konto" + QR-Rechnung später). -- Idempotent via IF NOT EXISTS, damit der Migrations-Runner mehrfach laufen kann. alter table accounts add column if not exists company text; alter table accounts add column if not exists contact_name text; alter table accounts add column if not exists street text; alter table accounts add column if not exists zip text; alter table accounts add column if not exists city text; alter table accounts add column if not exists country text default 'CH'; alter table accounts add column if not exists phone text; alter table accounts add column if not exists updated_at timestamptz not null default now(); -- Optionaler Anzeigename pro Instanz (Kunde benennt seine Instanzen selbst), -- damit eine Instanz-Liste im Konto lesbar ist (statt nur slug). alter table instances add column if not exists label text;