Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rudimentary support for enum types #118

Merged
merged 5 commits into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
203 changes: 0 additions & 203 deletions .stylish-haskell.yaml

This file was deleted.

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# hpqtypes-extras-1.17.0.0 (2023-??-??)
* Grouped some parameters of `migrateDatabase` and `checkDatabase` into a
`DatabaseDefinitions` record type.
* Add an optional check that all foreign keys have an index.
* Add support for NULLS NOT DISTINCT in unique indexes.
* Add `sqlAll` and `sqlAny` to allow creating `SQL` expressions with
nested `AND` and `OR` conditions.
* Add `SqlWhereAll` and `SqlWhereAny` so they can be used in signatures.
* Add rudimentary support for enum types.

# hpqtypes-extras-1.16.4.4 (2023-08-23)
* Switch from `cryptonite` to `crypton`.
Expand Down
1 change: 1 addition & 0 deletions hpqtypes-extras.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ library
, Database.PostgreSQL.PQTypes.Model.ColumnType
, Database.PostgreSQL.PQTypes.Model.CompositeType
, Database.PostgreSQL.PQTypes.Model.Domain
, Database.PostgreSQL.PQTypes.Model.EnumType
, Database.PostgreSQL.PQTypes.Model.Extension
, Database.PostgreSQL.PQTypes.Model.ForeignKey
, Database.PostgreSQL.PQTypes.Model.Index
Expand Down
Loading
Loading