From 8e63c3c20cb6abc14261d2ce8fc2aff9d95a439d Mon Sep 17 00:00:00 2001 From: Dan Cryer Date: Thu, 17 Oct 2013 03:04:56 -0700 Subject: [PATCH] Created MySQL plugin (markdown) --- MySQL-plugin.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 MySQL-plugin.md diff --git a/MySQL-plugin.md b/MySQL-plugin.md new file mode 100644 index 0000000..cbeeb32 --- /dev/null +++ b/MySQL-plugin.md @@ -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;" +``` \ No newline at end of file