Skip to content

Commit

Permalink
Dont set default value for fills rows (backport #2552) (#2553)
Browse files Browse the repository at this point in the history
Co-authored-by: Adam Fraser <[email protected]>
  • Loading branch information
mergify[bot] and adamfraser authored Nov 4, 2024
1 parent 86f1b48 commit 07cdd6c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as Knex from 'knex';

export async function up(knex: Knex): Promise<void> {
await knex.schema.table('fills', (table) => {
table.string('affiliateEarnedRevShare').notNullable().defaultTo('0');
table.string('affiliateEarnedRevShare');
});
}

Expand Down

0 comments on commit 07cdd6c

Please sign in to comment.