Releases: mattbishop/sql-event-store
Releases · mattbishop/sql-event-store
Version 2
This new version of SQL Event Store brings improved concepts and improvements:
- Renamed events table to
ledger
- Switched to snake case for all column names.
data
row changed to JSONB.- Removed the entity_events table to validate event names. Good idea, not very useful in practice as it could be ignored.
- Add views and functions to append and replay events.
- Autogenerated Event IDs, timestamps.
- Better rules to support acid appends for an entity instance without having to fetch the very latest event in the events table.
Testing was reworked to use WASM versions of SQLite and Postgres. Developers do not need to have a running Postgres server, or SQLite installed to validate the DDLs.