fr33domlover 8788807048 Atomic insertUnique in SqlBackend and PostgreSQL 9.5+ support пре 5 година
..
Database 8788807048 Atomic insertUnique in SqlBackend and PostgreSQL 9.5+ support пре 5 година
test a3eed2f7c5 Cleanup of pragmas, imports and dependencies (#888) пре 5 година
ChangeLog.md 700086e36d Releases пре 5 година
LICENSE 62e3056a5d Update license with MIT license пре 12 година
README.md e8dbafb099 Tidying up a few things пре 5 година
Setup.lhs 159e5f0921 Reorganized folder structure to match yesod пре 13 година
persistent-postgresql.cabal a3eed2f7c5 Cleanup of pragmas, imports and dependencies (#888) пре 5 година
test-settings.sh 65ab02b9b6 applyEnv for PostgreSQL пре 13 година

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