php-censor/docs/en/plugins/pgsql.md
Dmitry Khomutov 320a249153 Improved docs
2016-07-19 15:22:22 +06: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;"
```