From 07850725d95aea0ccabbadd6b37485a32f074cf4 Mon Sep 17 00:00:00 2001 From: Will Hester Date: Wed, 8 May 2024 17:40:21 +0100 Subject: [PATCH] fix table name --- go/host/storage/init/postgres/001_init.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/host/storage/init/postgres/001_init.sql b/go/host/storage/init/postgres/001_init.sql index c23ebe5985..87eece1b15 100644 --- a/go/host/storage/init/postgres/001_init.sql +++ b/go/host/storage/init/postgres/001_init.sql @@ -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 (