php-censor/docs/en/plugins/sqlite.md
2017-01-04 19:22:20 +07:00

24 lines
333 B
Markdown

Plugin SQLite
=============
Connects to a given SQLite DB and runs a list of queries.
Configuration
-------------
### Examples
```yaml
build_settings:
sqlite:
path: '/path/to/sqlite.sqlite'
setup:
sqlite:
- "CREATE DATABASE my_app_test;"
complete:
sqlite:
- "DROP DATABASE my_app_test;"
```