php-censor/docs/en/plugins/mysql.md

658 B
Raw Permalink Blame History

Plugin MySQL

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

Configuration

Examples

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