mirror of
https://github.com/XRPLF/clio.git
synced 2026-04-29 15:37:53 +00:00
15 lines
281 B
C++
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();
|
|
}
|