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

24 lines
333 B
Markdown
Raw Normal View History

2016-08-25 17:54:28 +02:00
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;"
```