migrate/driver/ql/README.md
Sam Willcocks 5773f75698
Add Ql driver
Adds a driver for the embedded Ql database (https://github.com/cznic/ql)
2017-01-05 15:09:41 +00:00

18 lines
596 B
Markdown

# Ql Driver
* Supports both in-memory and file ql databases, with the URL schemes `ql+file://` and `ql+memory://`
* In-memory driver is not of much use, since the database is destroyed once the migration operation finishes, but is included for completeness.
* Stores migration version details in automatically generated table ``schema_migrations``.
## Usage
```bash
migrate -url ql+file://./data.db -path ./migrations create add_field_to_table
migrate -url ql+file://./data.db -path ./db/migrations up
migrate help # for more info
```
## Authors
* Sam Willcocks, https://github.com/wlcx