Created MySQL plugin (markdown)
parent
8c97d64f44
commit
8e63c3c20c
1 changed files with 19 additions and 0 deletions
19
MySQL-plugin.md
Normal file
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;"
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue