php-censor/docs/en/plugins/pgsql.md

20 lines
331 B
Markdown
Raw Normal View History

2016-07-17 16:20:35 +02:00
Connects to a given PostgreSQL server and runs a list of queries.
### Example Configuration:
```yaml
build_settings:
pgsql:
host: 'localhost'
user: 'testuser'
pass: '12345678'
setup:
pgsql:
- "CREATE DATABASE my_app_test;"
complete:
pgsql:
- "DROP DATABASE my_app_test;"
```