From 774ca7eb4abfdac0618c395bd2bd6ad4b8bc5ddb Mon Sep 17 00:00:00 2001 From: David Badura Date: Thu, 19 Dec 2024 12:06:20 +0100 Subject: [PATCH] update stream store docs --- docs/pages/store.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/pages/store.md b/docs/pages/store.md index 205f54263..bac9c3bb7 100644 --- a/docs/pages/store.md +++ b/docs/pages/store.md @@ -122,8 +122,9 @@ The table structure of the `StreamDoctrineDbalStore` looks like this: | id | bigint | The index of the whole stream (autoincrement) | | stream | string | The name of the stream | | playhead | ?int | The current playhead of the aggregate | -| event | string | The name of the event | -| payload | json | The payload of the event | +| event_id | string | The id of the event | +| event_name | string | The name of the event | +| event_payload | json | The payload of the event | | recorded_on | datetime | The date when the event was recorded | | new_stream_start | bool | If the event is the first event of the aggregate | | archived | bool | If the event is archived |