fr33domlover 8788807048 Atomic insertUnique in SqlBackend and PostgreSQL 9.5+ support | před 5 roky | |
---|---|---|
.. | ||
Database | před 5 roky | |
test | před 5 roky | |
ChangeLog.md | před 5 roky | |
LICENSE | před 12 roky | |
README.md | před 5 roky | |
Setup.lhs | před 13 roky | |
persistent-postgresql.cabal | před 5 roky | |
test-settings.sh | před 13 roky |
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