GH-310 - Revert "Remove time zone from Postgres event publication schema."

This reverts commit 19457cd736. Related ticket: GH-306.
This commit is contained in:
Oliver Drotbohm
2023-10-16 14:01:25 +02:00
parent 560315ae14
commit 1482ba01f5

View File

@@ -4,7 +4,7 @@ CREATE TABLE IF NOT EXISTS event_publication
listener_id TEXT NOT NULL,
event_type TEXT NOT NULL,
serialized_event TEXT NOT NULL,
publication_date TIMESTAMP NOT NULL,
completion_date TIMESTAMP,
publication_date TIMESTAMP WITH TIME ZONE NOT NULL,
completion_date TIMESTAMP WITH TIME ZONE,
PRIMARY KEY (id)
)