Import SQL from file example

sojki 2015-02-19 19:55:36 +01:00
commit b02c5e4e27

@ -16,4 +16,14 @@ setup:
complete:
mysql:
- "DROP DATABASE my_app_test;"
```
Import SQL from file:
```yaml
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
```