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

24 lines
333 B
Markdown
Raw Permalink Normal View History

2016-08-25 17:54:28 +02:00
Plugin SQLite
2017-01-04 13:22:20 +01:00
=============
2016-08-25 17:54:28 +02:00
Connects to a given SQLite DB and runs a list of queries.
Configuration
2017-01-04 13:22:20 +01:00
-------------
2016-08-25 17:54:28 +02:00
### Examples
```yaml
build_settings:
sqlite:
path: '/path/to/sqlite.sqlite'
setup:
sqlite:
- "CREATE DATABASE my_app_test;"
complete:
sqlite:
- "DROP DATABASE my_app_test;"
```