Skip to content

Commit

Permalink
SchemaValidator: Adapting to new DBAL mapping of bigint
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasLandauer authored Mar 21, 2024
1 parent 9c56071 commit b0fae83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tools/SchemaValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class SchemaValidator
*/
private const BUILTIN_TYPES_MAP = [
AsciiStringType::class => 'string',
BigIntType::class => 'string',
BigIntType::class => 'string|int',
BooleanType::class => 'bool',
DecimalType::class => 'string',
FloatType::class => 'float',
Expand Down

0 comments on commit b0fae83

Please sign in to comment.