# Postgres Event Triggers Are Now Supported in Neon

DevFeed: [Postgres Event Triggers Are Now Supported in Neon](<https://devfeed.tech/articles/postgres-event-triggers-are-now-supported-in-neon-5730.md>)

Original publisher: [Read original article](<https://neon.com/blog/postgres-event-triggers>)

Author: Ben Hagan

Published: 2025-07-03T15:25:22Z

Content type: release

Language: en

Sources: [Blog -- Neon Docs](<https://devfeed.tech/sources/blog-neon-docs.md>)

Topics: [Databases](<https://devfeed.tech/topics/databases.md>), [Structured-data](<https://devfeed.tech/topics/structured-data.md>), [Automation](<https://devfeed.tech/topics/automation.md>), [monitor](<https://devfeed.tech/topics/monitor.md>), [Messaging](<https://devfeed.tech/topics/messaging.md>), [API](<https://devfeed.tech/topics/api.md>)

Tags: [api](<https://devfeed.tech/tags/api.md>), [audit](<https://devfeed.tech/tags/audit.md>), [automation](<https://devfeed.tech/tags/automation.md>), [company](<https://devfeed.tech/tags/company.md>), [event](<https://devfeed.tech/tags/event.md>), [messaging](<https://devfeed.tech/tags/messaging.md>), [monitor](<https://devfeed.tech/tags/monitor.md>), [postgres](<https://devfeed.tech/tags/postgres.md>), [product](<https://devfeed.tech/tags/product.md>), [schema](<https://devfeed.tech/tags/schema.md>), [workflow](<https://devfeed.tech/tags/workflow.md>)

## AI overview

Neon now supports Postgres Event Triggers through the neon_superuser role. The feature enables schema change detection, database automation, audit logging, enforcement of DDL policies, and synchronization workflows such as updating Zero's local model when the remote schema changes.

## Source excerpt

Postgres event triggers are a powerful (although often overlooked) feature. Regular Postgres triggers respond to row-level changes in a table, but event triggers fire on DDL commands like CREATE, ALTER, and DROP - allowing you to track schema changes, enforcing rules, and automat...