Skip to content

Commit

Permalink
Coding style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nicosp committed Dec 10, 2024
1 parent 781387c commit 8303d1a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Db/Adapter/MysqlAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -1067,6 +1067,7 @@ public function getSqlType(Literal|string $type, ?int $limit = null): array
'Column type "' . $type . '" is not supported by this version of MySQL.'
);
}

return ['name' => 'uuid'];

Check warning on line 1071 in src/Db/Adapter/MysqlAdapter.php

View check run for this annotation

Codecov / codecov/patch

src/Db/Adapter/MysqlAdapter.php#L1071

Added line #L1071 was not covered by tests
case static::PHINX_TYPE_YEAR:
if (!$limit || in_array($limit, [2, 4])) {
Expand Down Expand Up @@ -1510,6 +1511,7 @@ public function getColumnTypes(): array
/**
* Whether the server has a native uuid type.
* (MariaDB 10.7.0+)
*
* @return bool
*/
protected function hasNativeUuid(): bool
Expand Down

0 comments on commit 8303d1a

Please sign in to comment.