Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _sql/postgresql/event_log_table.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ CREATE SEQUENCE event_log_sequence;

CREATE TABLE event_log (
id INTEGER DEFAULT NEXTVAL('event_log_sequence'),
time TIMESTAMP NOT NULL,
time TIMESTAMP WITH TIME ZONE NOT NULL,
beginstring CHAR(8) NOT NULL,
sendercompid VARCHAR(64) NOT NULL,
sendersubid VARCHAR(64) NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion _sql/postgresql/messages_log_table.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ CREATE SEQUENCE messages_log_sequence;

CREATE TABLE messages_log (
id INTEGER DEFAULT NEXTVAL('messages_log_sequence'),
time TIMESTAMP NOT NULL,
time TIMESTAMP WITH TIME ZONE NOT NULL,
beginstring CHAR(8) NOT NULL,
sendercompid VARCHAR(64) NOT NULL,
sendersubid VARCHAR(64) NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion _sql/postgresql/sessions_table.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CREATE TABLE sessions (
targetsubid VARCHAR(64) NOT NULL,
targetlocid VARCHAR(64) NOT NULL,
session_qualifier VARCHAR(64) NOT NULL,
creation_time TIMESTAMP NOT NULL,
creation_time TIMESTAMP WITH TIME ZONE NOT NULL,
incoming_seqnum INTEGER NOT NULL,
outgoing_seqnum INTEGER NOT NULL,
PRIMARY KEY (beginstring, sendercompid, sendersubid, senderlocid,
Expand Down