Felix Paulusma fb29c8fd3a Persist.PostgreSQL.JSON haddock fix (#898) 5 years ago
..
Database fb29c8fd3a Persist.PostgreSQL.JSON haddock fix (#898) 5 years ago
test a3eed2f7c5 Cleanup of pragmas, imports and dependencies (#888) 5 years ago
ChangeLog.md 700086e36d Releases 5 years ago
LICENSE 62e3056a5d Update license with MIT license 12 years ago
README.md e8dbafb099 Tidying up a few things 5 years ago
Setup.lhs 159e5f0921 Reorganized folder structure to match yesod 12 years ago
persistent-postgresql.cabal a3eed2f7c5 Cleanup of pragmas, imports and dependencies (#888) 5 years ago
test-settings.sh 65ab02b9b6 applyEnv for PostgreSQL 12 years ago

README.md

persistent-postgresql

Build Status [Hackage] Hackage-Deps

A backend for the persistent database library for the PostgreSQL database server.

Development

To run tests on this library, you will need to have a PostgreSQL database server set up and running on your computer. The tests will expect to connect to a database named test using the postgres user and no password. This can be done either via the Postgresql command line or using the createdb tool:

$ psql -d postgres
postgres=# CREATE DATABASE test;
CREATE DATABASE

-- or,
$ createdb test