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

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