Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 383 Bytes

pgsql.md

File metadata and controls

25 lines (19 loc) · 383 Bytes

Plugin PostgreSQL

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

Configuration

Examples

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

setup:
    pgsql:
        - "CREATE DATABASE my_app_test;"

complete:
    pgsql:
        - "DROP DATABASE my_app_test;"