Skip to content

Commit

Permalink
build: add conflate to enums in case for future
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Oct 26, 2024
1 parent 2cc37b6 commit 7e19cdc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/backend/migrations/007-rename-task-history.sql
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ BEGIN
'VALIDATE',
'GOOD',
'BAD',
'CONFLATE',
'SPLIT',
'MERGE',
'ASSIGN',
Expand Down Expand Up @@ -52,7 +53,8 @@ BEGIN
'LOCKED_FOR_MAPPING',
'UNLOCKED_TO_VALIDATE',
'LOCKED_FOR_VALIDATION',
'UNLOCKED_DONE'
'UNLOCKED_DONE',
'CONFLATED'
);
END IF;
END $$;
Expand Down
4 changes: 3 additions & 1 deletion src/backend/migrations/init/fmtm_base_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ CREATE TYPE public.taskevent AS ENUM (
'VALIDATE',
'GOOD',
'BAD',
'CONFLATE',
'SPLIT',
'MERGE',
'ASSIGN',
Expand All @@ -137,7 +138,8 @@ CREATE TYPE public.mappingstate AS ENUM (
'LOCKED_FOR_MAPPING',
'UNLOCKED_TO_VALIDATE',
'LOCKED_FOR_VALIDATION',
'UNLOCKED_DONE'
'UNLOCKED_DONE',
'CONFLATED'
);
ALTER TYPE public.mappingstate OWNER TO fmtm;

Expand Down

0 comments on commit 7e19cdc

Please sign in to comment.