persistent-sqlite 2.10.2 → 2.10.3
raw patch · 3 files changed
+6/−1 lines, 3 files
Files
- ChangeLog.md +4/−0
- Database/Persist/Sqlite.hs +1/−0
- persistent-sqlite.cabal +1/−1
ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for persistent-sqlite +## 2.10.3++* Unique constraints are correctly generated. [#922](https://github.com/yesodweb/persistent/pull/922) @kderme+ ## 2.10.2 * Add a new `RawSqlite` type and `withRawSqliteConnInfo` function that allow access to the underlying Sqlite `Connection` type. [#772](https://github.com/yesodweb/persistent/pull/772)
Database/Persist/Sqlite.hs view
@@ -536,6 +536,7 @@ , "(" , T.intercalate "," $ map (escape . fieldDB) $ compositeFields pdef , ")"+ , T.concat $ map sqlUnique uniqs , ")" ] Nothing -> T.concat
persistent-sqlite.cabal view
@@ -1,5 +1,5 @@ name: persistent-sqlite-version: 2.10.2+version: 2.10.3 license: MIT license-file: LICENSE author: Michael Snoyman <michael@snoyman.com>