2 MySQL plugin
sojki edited this page 2015-02-19 19:55:36 +01:00
This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Connects to a given MySQL server and runs a selection of queries.

### Example Configuration:

build_settings:
    mysql:
        host: 'localhost'
        user: 'testuser'
        pass: '12345678'

setup:
    mysql:
        - "CREATE DATABASE my_app_test;"

complete:
    mysql:
        - "DROP DATABASE my_app_test;"

Import SQL from file:

setup:
    mysql:
        import-from-file:                   # This key name doesn´t matter
            import:
                database: "foo"             # Database name
                file: "/path/dump.sql"      # Relative path in build folder