├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── Setup.hs ├── changelog.md ├── drifter-postgresql.cabal ├── examples └── Example.hs ├── src └── Drifter │ └── PostgreSQL.hs ├── stack.yaml └── test └── Main.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelXavier/drifter-postgresql/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelXavier/drifter-postgresql/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelXavier/drifter-postgresql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelXavier/drifter-postgresql/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelXavier/drifter-postgresql/HEAD/changelog.md -------------------------------------------------------------------------------- /drifter-postgresql.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelXavier/drifter-postgresql/HEAD/drifter-postgresql.cabal -------------------------------------------------------------------------------- /examples/Example.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelXavier/drifter-postgresql/HEAD/examples/Example.hs -------------------------------------------------------------------------------- /src/Drifter/PostgreSQL.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelXavier/drifter-postgresql/HEAD/src/Drifter/PostgreSQL.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelXavier/drifter-postgresql/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelXavier/drifter-postgresql/HEAD/test/Main.hs --------------------------------------------------------------------------------