File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed
quickfixj-core/src/main/resources/config/sql/oracle Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ CREATE TABLE event_log (
2+ id INTEGER GENERATED ALWAYS AS IDENTITY INCREMENT BY 1 START WITH 1 CACHE 1000 ,
3+ time TIMESTAMP NOT NULL ,
4+ beginstring VARCHAR2 (8 ) NOT NULL ,
5+ sendercompid VARCHAR2 (64 ) NOT NULL ,
6+ sendersubid VARCHAR2 (64 ) NOT NULL ,
7+ senderlocid VARCHAR2 (64 ) NOT NULL ,
8+ targetcompid VARCHAR2 (64 ) NOT NULL ,
9+ targetsubid VARCHAR2 (64 ) NOT NULL ,
10+ targetlocid VARCHAR2 (64 ) NOT NULL ,
11+ session_qualifier VARCHAR2 (64 ) NOT NULL ,
12+ text VARCHAR2 (4000 ) NOT NULL ,
13+ PRIMARY KEY (id)
14+ );
Original file line number Diff line number Diff line change 1+ CREATE TABLE messages_log (
2+ id INTEGER GENERATED ALWAYS AS IDENTITY INCREMENT BY 1 START WITH 1 CACHE 1000 ,
3+ time TIMESTAMP NOT NULL ,
4+ beginstring VARCHAR2 (8 ) NOT NULL ,
5+ sendercompid VARCHAR2 (64 ) NOT NULL ,
6+ sendersubid VARCHAR2 (64 ) NOT NULL ,
7+ senderlocid VARCHAR2 (64 ) NOT NULL ,
8+ targetcompid VARCHAR2 (64 ) NOT NULL ,
9+ targetsubid VARCHAR2 (64 ) NOT NULL ,
10+ targetlocid VARCHAR2 (64 ) NOT NULL ,
11+ session_qualifier VARCHAR2 (64 ) NOT NULL ,
12+ text VARCHAR2 (4000 ) NOT NULL ,
13+ PRIMARY KEY (id)
14+ );
You can’t perform that action at this time.
0 commit comments