Skip to content

Commit

Permalink
Add "smallint" and "bigint" support to FilterModel
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Jun 17, 2024
1 parent 12b9e3d commit 97c40db
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Table/Column/FilterModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ public static function factoryType(App $app, Field $field): self
Types::TEXT => FilterModel\TypeString::class,

Types::BOOLEAN => FilterModel\TypeBoolean::class,
Types::SMALLINT => FilterModel\TypeNumber::class,
Types::INTEGER => FilterModel\TypeNumber::class,
Types::BIGINT => FilterModel\TypeNumber::class,
Types::FLOAT => FilterModel\TypeNumber::class,
CustomTypes::MONEY => FilterModel\TypeNumber::class,

Expand Down

0 comments on commit 97c40db

Please sign in to comment.