Skip to content

Commit 49d225c

Browse files
authored
missing closing parenthesis
fixes #39
1 parent 9c2ecaa commit 49d225c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DatabaseParsers/MysqlParser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ protected function getDataType($type, $columnType)
331331
{
332332
$map = Config::dataTypeMap();
333333

334-
if (in_array($columnType, ['bit', 'tinyint(1)']) {
334+
if (in_array($columnType, ['bit', 'tinyint(1)'])) {
335335
return 'boolean';
336336
}
337337

0 commit comments

Comments
 (0)