Raw SQL
Migrations
You can execute DDLX statement using raw SQL.
For example connect using PSQL:
$ psql "<your connection string>"
Then execute the statement directly:
ALTER TABLE items
ENABLE ELECTRIC;
Event sourcing
There are many ways to consume data changes from Postgres using raw SQL. See Integrations -> Event sourcing -> Change events for more information.