mirror of https://github.com/status-im/migrate.git
update readme and add new readme to cassandra driver
This commit is contained in:
parent
303d40c992
commit
53ee5dca38
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
```
|
Loading…
Reference in New Issue