Skip to content

Commit 42525c5

Browse files
committed
Fixed oracle DB issue
1 parent 17b0994 commit 42525c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/audit4j/handler/db/AuditLogDaoImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ private boolean createTableIfNotExists() throws HandlerException {
117117
}
118118
if (result == false) {
119119
query.append("create table ").append(tableName).append(" (")
120-
.append("identifier VARCHAR(200) NOT NULL,")
120+
.append("identifier VARCHAR2(200) NOT NULL,")
121121
.append("timestamp TIMESTAMP NOT NULL,")
122122
.append("actor VARCHAR2(200) NOT NULL,").append("origin VARCHAR2(200),")
123123
.append("action VARCHAR2(200) NOT NULL,").append("elements CLOB")

0 commit comments

Comments
 (0)