A table defined as (this is simplified):
CREATE TABLE build_events (
build_id INTEGER, -- associated with the builds table (joins not important here)
event_id INTEGER, -- increases for every entry that is inserted, used in a subquent ORDER BY
payload TEXT. -- JSON payload
);