Compliance built into
your database. Not bolted on.
ashbase is PostgreSQL where DELETE triggers policy evaluation, not destruction. GDPR, SOX, legal holds, and PII masking handled at the engine level with zero overhead on the read path.
Built for teams that take compliance seriously
How it works
Three steps. No infrastructure changes. No application rewrites.
Write standard SQL
No new query language. No SDK. Your existing PostgreSQL code, ORMs, and drivers work unchanged.
DELETE triggers policy evaluation
The engine intercepts DELETE, evaluates signal policies, and routes data through the correct compliance state.
Data routes by compliance state
Partitioned by signal state. Active data stays in hot partitions. Zero overhead on the read path.
Everything you need, nothing you don't
Compliance at the engine level means less code, fewer bugs, and zero surprises during audits.
SQL you already know
No new APIs. No SDKs. Just PostgreSQL with compliance superpowers.
CREATE SIGNAL POLICY gdpr_retention
ON users
AFTER DELETE
SET signal = 'soft_deleted'
MASK COLUMNS (email, phone, address)
RETAIN FOR INTERVAL '30 days'
THEN SET signal = 'purged';The difference is in the engine
Stop building compliance infrastructure. Start using a database that handles it.