-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
402 additions
and
715 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ | |
dist/ | ||
.cabal-sandbox | ||
cabal.sandbox.config | ||
stack.yaml | ||
.stack-work |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
name: postgresql-simple-migration | ||
version: 0.1.7.0 | ||
name: hasql-migration | ||
version: 0.1.0 | ||
synopsis: PostgreSQL Schema Migrations | ||
homepage: https://github.com/ameingast/postgresql-simple-migration | ||
Bug-reports: https://github.com/ameingast/postgresql-simple-migration/issues | ||
homepage: https://github.com/tvh/hasql-migration | ||
Bug-reports: https://github.com/tvh/hasql-migration/issues | ||
license: BSD3 | ||
license-file: License | ||
author: Andreas Meingast <[email protected]> | ||
maintainer: Andreas Meingast <[email protected]> | ||
maintainer: Timo von Holtz <[email protected]> | ||
copyright: 2014-2016, Andreas Meingast | ||
category: Database | ||
build-type: Simple | ||
|
@@ -17,12 +17,6 @@ extra-source-files: License | |
Readme.markdown | ||
Changelog.markdown | ||
|
||
src/*.hs | ||
src/Database/PostgreSQL/Simple/*.hs | ||
|
||
test/*.hs | ||
test/Database/PostgreSQL/Simple/*.hs | ||
|
||
share/test/*.sql | ||
share/test/scripts/*.sql | ||
|
||
|
@@ -31,35 +25,24 @@ source-repository head | |
location: git://github.com/ameingast/postgresql-simple-migration | ||
|
||
Library | ||
exposed-modules: Database.PostgreSQL.Simple.Migration | ||
Database.PostgreSQL.Simple.Util | ||
exposed-modules: Hasql.Migration | ||
Hasql.Migration.Util | ||
hs-source-dirs: src | ||
ghc-options: -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns | ||
default-extensions: OverloadedStrings, CPP, LambdaCase | ||
default-language: Haskell2010 | ||
build-depends: base >= 4.6 && < 5.0, | ||
base64-bytestring >= 1.0 && < 1.1, | ||
bytestring >= 0.10 && < 0.11, | ||
contravariant, | ||
cryptohash >= 0.11 && < 0.12, | ||
data-default-class, | ||
directory >= 1.2 && < 1.3, | ||
postgresql-simple >= 0.4 && < 0.6, | ||
hasql >= 0.19 && < 0.20, | ||
hasql-transaction >= 0.4 && < 0.5, | ||
text, | ||
time >= 1.4 && < 1.7 | ||
|
||
Executable migrate | ||
main-is: Main.hs | ||
hs-source-dirs: src | ||
ghc-options: -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns | ||
default-extensions: OverloadedStrings, CPP, LambdaCase | ||
default-language: Haskell2010 | ||
build-depends: base >= 4.6 && < 5.0, | ||
base64-bytestring >= 1.0 && < 1.1, | ||
bytestring >= 0.10 && < 0.11, | ||
cryptohash >= 0.11 && < 0.12, | ||
directory >= 1.2 && < 1.3, | ||
postgresql-simple >= 0.4 && < 0.6, | ||
time >= 1.4 && < 1.7, | ||
text >= 1.2 && < 1.3 | ||
|
||
test-suite tests | ||
main-is: Main.hs | ||
hs-source-dirs: test | ||
|
@@ -69,6 +52,8 @@ test-suite tests | |
type: exitcode-stdio-1.0 | ||
build-depends: base >= 4.6 && < 5.0, | ||
bytestring >= 0.10 && < 0.11, | ||
postgresql-simple >= 0.4 && < 0.6, | ||
hasql >= 0.19 && < 0.20, | ||
hasql-migration >= 0.1 && < 0.2, | ||
hasql-transaction >= 0.4 && < 0.5, | ||
hspec >= 2.2 && < 2.3, | ||
postgresql-simple-migration >= 0.1 && < 0.2 | ||
transformers |
Oops, something went wrong.