Skip to content

Commit

Permalink
convert column type to lower case again.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinb1989 committed Jan 6, 2024
1 parent 19e2db5 commit 9f7a102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tokenizers/MySQL/ColumnTokenizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ protected function consumeColumnType()
$columnType = explode('(', $columnType)[0];
}

$this->columnDataType = $columnType;
$this->columnDataType = strtolower($columnType);

$this->resolveColumnMethod();
if ($hasConstraints) {
Expand Down

0 comments on commit 9f7a102

Please sign in to comment.