diff --git a/apps/voucher/services/db/migrations/20240520210910_adding_platformFee.mjs b/apps/voucher/services/db/migrations/20240520210910_adding_platformFee.mjs new file mode 100644 index 00000000000..c0b66fbf169 --- /dev/null +++ b/apps/voucher/services/db/migrations/20240520210910_adding_platformFee.mjs @@ -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) => {}