Skip to content

Commit

Permalink
Remove incorrect type
Browse files Browse the repository at this point in the history
  • Loading branch information
staudenmeir committed Nov 2, 2024
1 parent eecccee commit 6e55ff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Query/Grammars/Traits/CompilesMySqlAdjacencyLists.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public function compilePivotColumnNullValue(string $typeName, string $type): str
}

$cast = match ($typeName) {
'bigint', 'boolean', 'integer', 'int', 'smallint', 'tinyint' => 'signed',
'bigint', 'boolean', 'int', 'smallint', 'tinyint' => 'signed',
'decimal' => "decimal($precision, $scale)",
'timestamp' => 'datetime',
'varchar' => 'char(65535)',
Expand Down

0 comments on commit 6e55ff3

Please sign in to comment.