Patient records for a clinic (EHR)
Instead of Postgres + audit triggers + a history table
| Arkeion | Postgres + audit triggers + a history table | |
|---|---|---|
| Detecting that a record was altered | SHA-256 hash chain + verify(), built into storage — and an anchor you keep elsewhere | A history table a privileged user can edit, leaving nothing behind |
| Reading a record as it stood a year ago | SELECT … AS OF that version or timestamp | Replay the audit log by hand to reconstruct it |
| PII encryption at rest | AES-256-GCM per page, your key, chosen at creation | Bolt on pgcrypto or disk encryption, configured separately |