php-censor/docs/en/plugins/pgsql.md
2017-01-04 19:22:20 +07:00

26 lines
383 B
Markdown

Plugin PostgreSQL
=================
Connects to a given PostgreSQL server and runs a list of queries.
Configuration
-------------
### Examples
```yaml
build_settings:
pgsql:
host: 'localhost'
user: 'testuser'
pass: '12345678'
setup:
pgsql:
- "CREATE DATABASE my_app_test;"
complete:
pgsql:
- "DROP DATABASE my_app_test;"
```