GH-306 - Remove time zone from Postgres event publication schema.

This commit is contained in:
Oliver Drotbohm
2023-09-21 23:28:53 +02:00
parent 7c18d3f517
commit 19457cd736

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 WITH TIME ZONE NOT NULL,
completion_date TIMESTAMP WITH TIME ZONE,
publication_date TIMESTAMP NOT NULL,
completion_date TIMESTAMP,
PRIMARY KEY (id)
)