Created MySQL plugin (markdown)

Dan Cryer 2013-10-17 03:04:56 -07:00
commit 8e63c3c20c

19
MySQL-plugin.md Normal file

@ -0,0 +1,19 @@
Connects to a given MySQL server and runs a selection of queries.
### Example Configuration:
```yaml
build_settings:
mysql:
host: 'localhost'
user: 'testuser'
pass: '12345678'
setup:
mysql:
- "CREATE DATABASE my_app_test;"
complete:
mysql:
- "DROP DATABASE my_app_test;"
```