Files
clio/tests/integration/migration/cassandra/ExampleDropTableMigrator.cpp
2026-03-24 15:25:32 +00:00

15 lines
281 B
C++

#include "migration/cassandra/ExampleDropTableMigrator.hpp"
#include "util/config/ObjectView.hpp"
#include <memory>
void
ExampleDropTableMigrator::runMigration(
std::shared_ptr<Backend> const& backend,
util::config::ObjectView const&
)
{
backend->dropDiffTable();
}