godcrm/scripts/phase7-7.1-registry-provenance.rollback.sql
GOD CRM Release f89e074dd1
Some checks failed
CI / Lint / Typecheck / Test / Build (push) Has been cancelled
CI / PostgreSQL Integration Tests (push) Has been cancelled
GOD CRM — public scrubbed snapshot
Governed substrate for autonomous agents: scoped identity (passports),
audited actions, MCP workspace. Infra IPs and secrets redacted for public release.
2026-08-10 04:01:45 +03:00

8 lines
341 B
PL/PgSQL

-- Rollback for phase7-7.1-registry-provenance.sql (ticket 125589)
-- Drops the trigger + function. Does NOT undo the backfill of created_by=1
-- (that data is not recoverable; if needed, restore from backup).
BEGIN;
DROP TRIGGER IF EXISTS registry_provenance_trg ON table_rows;
DROP FUNCTION IF EXISTS registry_provenance_check();
COMMIT;