Skip to content

Commit

Permalink
MDEXP-630 - update script
Browse files Browse the repository at this point in the history
  • Loading branch information
alekGbuz committed Sep 8, 2023
1 parent c5dabb9 commit 9bd349a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/db/changelog/changes/initial_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS job_profiles (
references mapping_profiles(id) ON DELETE CASCADE
);

CREATE TYPE ExecutionStatusType AS ENUM ('NEW', 'IN_PROGRESS', 'COMPLETED', 'COMPLETED_WITH_ERRORS', 'FAILED');
CREATE TYPE ExecutionStatusType AS ENUM ('NEW', 'IN_PROGRESS', 'COMPLETED', 'COMPLETED_WITH_ERRORS', 'FAIL');
CREATE CAST (character varying as ExecutionStatusType) WITH INOUT AS IMPLICIT;

CREATE TABLE IF NOT EXISTS job_executions (
Expand Down

0 comments on commit 9bd349a

Please sign in to comment.