Skip to content

Commit

Permalink
fix: remove destroyAll from add custom templates migration
Browse files Browse the repository at this point in the history
  • Loading branch information
nickoferrall committed Mar 27, 2024
1 parent d9afe93 commit 5baf3b7
Showing 1 changed file with 0 additions and 4 deletions.
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 5baf3b7

Please sign in to comment.