Skip to content

Commit

Permalink
Added int column as default numeric column
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaplet committed Sep 29, 2024
1 parent 9127f46 commit 8ade887
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Collection/Helper/ColumnCreator.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public static function create(string $type, string $key, bool $visible, bool $so
Types::DATETIMETZ_MUTABLE,
Types::DATETIMETZ_IMMUTABLE => new DateTimeColumn(key: $key, name: $key, sortable: $sortable, visible: $visible),

'int',
Types::FLOAT,
Types::INTEGER,
Types::SMALLINT => new NumericColumn(key: $key, name: $key, sortable: $sortable, visible: $visible),
Expand Down

0 comments on commit 8ade887

Please sign in to comment.