Skip to content

Commit

Permalink
chore: consolidate two expensive blocks table migrations (#2136)
Browse files Browse the repository at this point in the history
  • Loading branch information
zone117x authored Oct 23, 2024
1 parent 07426a2 commit 37939a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
/** @param { import("node-pg-migrate").MigrationBuilder } pgm */
exports.up = pgm => {

pgm.addColumn('blocks', {
tenure_height: {
type: 'integer',
}
});

pgm.addColumn('blocks', {
signer_signatures: {
type: 'bytea[]',
Expand Down
12 changes: 0 additions & 12 deletions migrations/1729520843350_stacks_block_tenure-height.js

This file was deleted.

0 comments on commit 37939a0

Please sign in to comment.