Skip to content
This repository has been archived by the owner on Nov 23, 2021. It is now read-only.

Commit

Permalink
#629: fixed escaping of timestamp column
Browse files Browse the repository at this point in the history
  • Loading branch information
hohwille committed May 8, 2018
1 parent d223120 commit c5483cc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- *** RevInfo (Commit log for envers audit trail) ***
CREATE TABLE RevInfo(
id BIGINT NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1),
timestamp BIGINT NOT NULL,
userLogin VARCHAR(255)
id BIGINT NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1),
"timestamp" BIGINT NOT NULL,
userLogin VARCHAR(255)
);

0 comments on commit c5483cc

Please sign in to comment.