Created Postgresql plugin (markdown)

Dan Cryer 2013-10-17 03:10:20 -07:00
commit 80d1e84574

19
Postgresql-plugin.md Normal file

@ -0,0 +1,19 @@
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;"
```