Skip to content

Commit

Permalink
fix: fix SQL migration script (#106)
Browse files Browse the repository at this point in the history
Signed-off-by: Mohamad Fadhil <[email protected]>
  • Loading branch information
sdil authored Dec 17, 2024
1 parent c7cf58d commit b714af1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions resources/durablestore_postgres.sql
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,6 @@ CREATE TABLE IF NOT EXISTS states_store
CREATE INDEX IF NOT EXISTS idx_states_store_persistence_id ON events_store(persistence_id);
CREATE INDEX IF NOT EXISTS idx_states_store_version_number ON events_store(version_number);
);

CREATE INDEX IF NOT EXISTS idx_states_store_persistence_id ON states_store(persistence_id);
CREATE INDEX IF NOT EXISTS idx_states_store_version_number ON states_store(version_number);

0 comments on commit b714af1

Please sign in to comment.