Felix Paulusma fb29c8fd3a Persist.PostgreSQL.JSON haddock fix (#898) | 5 سال پیش | |
---|---|---|
.. | ||
Database | 5 سال پیش | |
test | 5 سال پیش | |
ChangeLog.md | 5 سال پیش | |
LICENSE | 12 سال پیش | |
README.md | 5 سال پیش | |
Setup.lhs | 13 سال پیش | |
persistent-postgresql.cabal | 5 سال پیش | |
test-settings.sh | 13 سال پیش |
persistent-postgresql
A backend for the persistent
database library for the PostgreSQL database server.
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