Skip to content

Commit

Permalink
refactor: Remove unused precision and scale arguments.
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurschreiber committed Jan 22, 2018
1 parent 0d4e197 commit 0968cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data-types/varchar.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ module.exports = {
}
},

validate(value, length, precision, scale) {
validate(value, length) {
if (value === undefined || value === null) {
return null;
}
Expand Down

0 comments on commit 0968cb4

Please sign in to comment.