update readme and add new readme to cassandra driver

This commit is contained in:
mattes 2014-08-27 11:25:42 +02:00
parent 303d40c992
commit 53ee5dca38
2 changed files with 10 additions and 0 deletions

View File

@ -22,6 +22,7 @@ __Features__
## Available Drivers
* [PostgreSQL](https://github.com/mattes/migrate/tree/master/driver/postgres)
* [Cassandra](https://github.com/mattes/migrate/tree/master/driver/cassandra)
* Bash (planned)
Need another driver? Just implement the [Driver interface](http://godoc.org/github.com/mattes/migrate/driver#Driver) and open a PR.

View File

@ -0,0 +1,9 @@
# Cassandra Driver
## Usage
```bash
migrate -url cassandra://host:port/keyspace -path ./db/migrations create add_field_to_table
migrate -url cassandra://host:port/keyspace -path ./db/migrations up
migrate help # for more info
```