ecto_range
ecto_range copied to clipboard
An Ecto custom type for working Postgres ranges
Hello! Awesome little library, thanks for building it! I had some questions about the use of the `EctoRange.Num` type. I've got some numeric ranges that I want to store and...
Each postgres range type supports whats called a multirange > Every range type has a corresponding multirange type. A multirange is an ordered list of non-contiguous, non-empty, non-null ranges. Most...
Postgres ranges have convenient operators for doing set math on ranges. We can extend the Ecto DSL to provide convenience macros for working with these operators e.g. ```sql CREATE TABLE...