Skip to content

Commit

Permalink
Make migration consistent with deployed version (#2498)
Browse files Browse the repository at this point in the history
At some point, a trailing newline got deleted from a SQL migration, but this
file must be byte-for-byte equal with the version which has already been
deployed, where the trailing newline is present.
  • Loading branch information
jbearer authored Jan 27, 2025
1 parent 0cd7798 commit e343feb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sequencer/api/migrations/postgres/V14__state_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ ALTER TABLE
ADD
CONSTRAINT block_merkle_tree_pk PRIMARY KEY (path, created);

CREATE INDEX block_merkle_tree_created ON block_merkle_tree (created);
CREATE INDEX block_merkle_tree_created ON block_merkle_tree (created);

0 comments on commit e343feb

Please sign in to comment.