Created
May 28, 2014 21:06
-
-
Save GaryRogers/b9e37e7898989f7d90bb to your computer and use it in GitHub Desktop.
Monolog Oracle Table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE | |
MONOLOG | |
( | |
ID NUMBER(11) NOT NULL, | |
LOG_TIME TIMESTAMP(6), | |
LOG_LEVEL VARCHAR2(20), | |
LOG_HOSTNAME VARCHAR2(512), | |
LOG_USER VARCHAR2(30), | |
LOG_IP VARCHAR2(45), | |
LOG_MESSAGE CLOB, | |
LOG_CONTEXT CLOB, | |
CONSTRAINT IMHR_AUDITLOG_ID_PK PRIMARY KEY (ID) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment