-- service_account_delegates tracks which human accounts are permitted to issue -- tokens for a given system account without holding the global admin role. -- Admins manage delegates; delegates can issue/rotate tokens for the specific -- system account only and cannot modify any other account settings. CREATE TABLE IF NOT EXISTS service_account_delegates ( id INTEGER PRIMARY KEY, account_id INTEGER NOT NULL REFERENCES accounts(id) ON DELETE CASCADE, grantee_id INTEGER NOT NULL REFERENCES accounts(id) ON DELETE CASCADE, granted_by INTEGER REFERENCES accounts(id), granted_at TEXT NOT NULL DEFAULT (strftime('%Y-%m-%dT%H:%M:%SZ','now')), UNIQUE (account_id, grantee_id) ); CREATE INDEX IF NOT EXISTS idx_sa_delegates_account ON service_account_delegates (account_id); CREATE INDEX IF NOT EXISTS idx_sa_delegates_grantee ON service_account_delegates (grantee_id);