Skip to content

Commit

Permalink
fix: ensure pool is callable after custom template migration (#9572)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickoferrall authored Mar 28, 2024
1 parent 79e67cd commit 0d30206
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ export async function up() {
.addColumn('freeCustomRetroTemplatesRemaining', 'int2', (col) => col.defaultTo(2).notNull())
.addColumn('freeCustomPokerTemplatesRemaining', 'int2', (col) => col.defaultTo(2).notNull())
.execute()

await pg.destroy()
}

export async function down() {
Expand All @@ -29,6 +27,4 @@ export async function down() {
.dropColumn('freeCustomRetroTemplatesRemaining')
.dropColumn('freeCustomPokerTemplatesRemaining')
.execute()

await pg.destroy()
}

0 comments on commit 0d30206

Please sign in to comment.