Skip to content

Commit

Permalink
fix: remove change from migration
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosvdr committed Aug 1, 2024
1 parent 4ed028c commit bd3a97c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export async function up({ context }: Context): Promise<void> {
allowNull: false,
},
nonce: {
type: DataTypes.DECIMAL(20),
type: DataTypes.DECIMAL,
allowNull: false,
},
value: {
Expand Down Expand Up @@ -108,11 +108,11 @@ export async function up({ context }: Context): Promise<void> {
allowNull: false,
},
nonce: {
type: DataTypes.DECIMAL(20),
type: DataTypes.DECIMAL,
allowNull: false,
},
value: {
type: DataTypes.DECIMAL(39),
type: DataTypes.DECIMAL(20),
allowNull: false,
},
})
Expand Down

0 comments on commit bd3a97c

Please sign in to comment.