Skip to content

Commit

Permalink
Dont set default value for fills rows (#2552)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamfraser authored Nov 4, 2024
1 parent 407bea2 commit ad89431
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 ad89431

Please sign in to comment.