diff --git a/src/main/main.cpp b/src/main/main.cpp index 4d9baa137..6632999ae 100644 --- a/src/main/main.cpp +++ b/src/main/main.cpp @@ -326,7 +326,7 @@ main(int argc, char* argv[]) } auto const type = config.value("database.type"); - if (!boost::iequals(type, "cassandra")) + if (!(boost::iequals(type, "cassandra") || boost::iequals(type, "cassandra-new"))) { std::cerr << "Migration only for cassandra dbs" << std::endl; return EXIT_FAILURE;