Skip to content

Commit

Permalink
Merge pull request #291 from /issues/290-oracle-ddl
Browse files Browse the repository at this point in the history
Fix #290: DDL error in Oracle
  • Loading branch information
romanstrobl authored Jul 22, 2022
2 parents 52ff2d9 + b26d530 commit cb4e24b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/sql/oracle/create-schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ CREATE TABLE ES_ONBOARDING_PROCESS (
ACTIVATION_ID VARCHAR2(36 CHAR),
STATUS VARCHAR2(32 CHAR) NOT NULL,
ERROR_DETAIL VARCHAR2(256 CHAR),
ERROR_SCORE INTEGER NOT NULL DEFAULT 0,
ERROR_SCORE INTEGER DEFAULT 0 NOT NULL,
TIMESTAMP_CREATED TIMESTAMP(6) NOT NULL,
TIMESTAMP_LAST_UPDATED TIMESTAMP(6),
TIMESTAMP_FINISHED TIMESTAMP(6)
Expand Down

0 comments on commit cb4e24b

Please sign in to comment.