Skip to content

Commit

Permalink
[0.10.2-SNAPSHOT]
Browse files Browse the repository at this point in the history
ScriptCassandraMigrationEngine TRUNCATE->DROP
  • Loading branch information
GoodforGod committed May 20, 2024
1 parent 4b46286 commit 1f1d77d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public void drop(@NotNull List<String> locations) {

for (Table table : tables) {
if (!table.keyspace().startsWith("system")) {
connection.execute("TRUNCATE TABLE " + table.keyspace() + "." + table.name());
connection.execute("DROP TABLE " + table.keyspace() + "." + table.name());
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
groupId=io.goodforgod
artifactRootId=testcontainers-extensions
artifactVersion=0.10.1-SNAPSHOT
artifactVersion=0.10.2-SNAPSHOT


##### GRADLE #####
Expand Down

0 comments on commit 1f1d77d

Please sign in to comment.