Skip to content

Commit

Permalink
fix table name
Browse files Browse the repository at this point in the history
  • Loading branch information
badgersrus committed May 8, 2024
1 parent 6c125b6 commit 0785072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/host/storage/init/postgres/001_init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ CREATE TABLE IF NOT EXISTS transaction_host
FOREIGN KEY (b_sequence) REFERENCES batch_host(sequence)
);

CREATE INDEX IF NOT EXISTS IDX_TX_SEQ_HOST ON batch_host (b_sequence);
CREATE INDEX IF NOT EXISTS IDX_TX_SEQ_HOST ON transaction_host (b_sequence);

CREATE TABLE IF NOT EXISTS transaction_count
(
Expand Down

0 comments on commit 0785072

Please sign in to comment.