Skip to content

Commit

Permalink
chore(voucher): adding migration for platformFee
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhart1o1 committed May 20, 2024
1 parent 971e3a6 commit 55c1989
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export const up = async (knex) => {
await knex.schema.table("WithdrawLinks", (table) => {
table.decimal("platformFee").notNullable().unsigned().defaultTo(0)
})
}

export const down = async (knex) => {}

0 comments on commit 55c1989

Please sign in to comment.