1 Postgresql plugin
Dan Cryer edited this page 2013-10-17 03:10:20 -07:00

Connects to a given PostgreSQL server and runs a list of queries.

### Example Configuration:

build_settings:
    pgsql:
        host: 'localhost'
        user: 'testuser'
        pass: '12345678'

setup:
    pgsql:
        - "CREATE DATABASE my_app_test;"

complete:
    pgsql:
        - "DROP DATABASE my_app_test;"