Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 331 Bytes

postgresql-plugin.md

File metadata and controls

19 lines (15 loc) · 331 Bytes

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;"