Skip to content

Commit

Permalink
Fixed H2 v2 SQL issue
Browse files Browse the repository at this point in the history
  • Loading branch information
cer committed Nov 27, 2022
1 parent f8524ff commit 6a92ec7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ CREATE TABLE IF NOT EXISTS eventuate.saga_instance(
saga_id VARCHAR(100) NOT NULL,
state_name VARCHAR(100) NOT NULL,
last_request_id VARCHAR(100),
end_state INT(1),
compensating INT(1),
failed INT(1),
end_state TINYINT,
compensating TINYINT,
failed TINYINT,
saga_data_type VARCHAR(1000) NOT NULL,
saga_data_json VARCHAR(1000) NOT NULL,
PRIMARY KEY(saga_type, saga_id)
Expand Down

0 comments on commit 6a92ec7

Please sign in to comment.