Skip to content
This repository was archived by the owner on Jul 22, 2020. It is now read-only.

Commit 8a74bac

Browse files
authored
Merge pull request #5 from builtamont-oss/chore/upstream_pr_24
Address upstream PR #24
2 parents ce0fb5b + 2c52002 commit 8a74bac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ cm.migrate();
100100
101101
``` shell
102102
java -jar \
103-
-Dcassandra.migration.scripts.locations=file:target/test-classes/migration/integ \
103+
-Dcassandra.migration.scripts.locations=filesystem:target/test-classes/migration/integ \
104104
-Dcassandra.migration.cluster.contactpoints=localhost \
105105
-Dcassandra.migration.cluster.port=9147 \
106106
-Dcassandra.migration.cluster.username=cassandra \
@@ -145,17 +145,17 @@ Keyspace:
145145
146146
## Project Rationale
147147
148-
**Why not create an extension to an existing popular database migration project (i.e. Flyway)?**
148+
**Why not create an extension to an existing popular database migration project (i.e. Flyway)?**<br />
149149
Popular database migration tools (e.g. Flyway, Liquibase) are tailored for relational databases with JDBC. This project exists due to the need for Cassandra-specific tooling:
150150
* CQL != SQL,
151151
* Cassandra is distributed and does not have ACID transactions,
152152
* Cassandra do not have native JDBC driver(s),
153153
* etc.
154154
155-
**Why not extend the existing Cassandra Migration project?**
155+
**Why not extend the existing Cassandra Migration project?**<br />
156156
The existing project does not seem to be actively maintained. Several important PRs have been left open for months and there was an immediate need to support Cassandra driver v3.x.
157157
158-
**Why Kotlin?**
158+
**Why Kotlin?**<br />
159159
There are various reasons why Kotlin was chosen, but three main reasons are:
160160
* code brevity and reduced noise,
161161
* stronger `null` checks (enforced at the compiler level), and

0 commit comments

Comments
 (0)