We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17b0994 commit 42525c5Copy full SHA for 42525c5
src/main/java/org/audit4j/handler/db/AuditLogDaoImpl.java
@@ -117,7 +117,7 @@ private boolean createTableIfNotExists() throws HandlerException {
117
}
118
if (result == false) {
119
query.append("create table ").append(tableName).append(" (")
120
- .append("identifier VARCHAR(200) NOT NULL,")
+ .append("identifier VARCHAR2(200) NOT NULL,")
121
.append("timestamp TIMESTAMP NOT NULL,")
122
.append("actor VARCHAR2(200) NOT NULL,").append("origin VARCHAR2(200),")
123
.append("action VARCHAR2(200) NOT NULL,").append("elements CLOB")
0 commit comments