packages feed

selda-sqlite 0.1.7.0 → 0.1.7.1

raw patch · 3 files changed

+11/−5 lines, 3 filesdep ~seldadep ~timePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: selda, time

API changes (from Hackage documentation)

Files

LICENSE view
@@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017-2018 Anton Ekblad+Copyright (c) 2017-2019 Anton Ekblad  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
selda-sqlite.cabal view
@@ -1,5 +1,5 @@ name:                selda-sqlite-version:             0.1.7.0+version:             0.1.7.1 synopsis:            SQLite backend for the Selda database EDSL. description:         Allows the Selda database EDSL to be used with SQLite                      databases.@@ -26,7 +26,7 @@     CPP   build-depends:       base          >=4.9 && <5-    , selda         >=0.4 && <0.5+    , selda         >=0.5 && <0.6     , text          >=1.0 && <1.3   if !flag(haste)     build-depends:
src/Database/Selda/SQLite.hs view
@@ -97,8 +97,14 @@         | (names, "u") <- ixs         ]       , tablePrimaryKey = concat-        [ map mkColName names-        | (names, "pk") <- ixs+        [ concat+          [ map mkColName names+          | (names, "pk") <- ixs+          ]+        , [ colName ci+          | ci <- colInfos+          , colIsAutoPrimary ci+          ]         ]       }   where