Skip to content

Commit 3726b85

Browse files
felipewindF3189516 Felipe Henrique Gross Windmoller
and
F3189516 Felipe Henrique Gross Windmoller
authored
add oracle ddl tables event_log and messages_log (QFJ-979) (#349)
Co-authored-by: F3189516 Felipe Henrique Gross Windmoller <[email protected]>
1 parent 0e5c8c8 commit 3726b85

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
);

0 commit comments

Comments
 (0)