3#include "data/BackendInterface.hpp"
4#include "migration/cassandra/CassandraMigrationBackend.hpp"
5#include "migration/impl/MigrationInspectorBase.hpp"
6#include "migration/impl/MigrationManagerBase.hpp"
7#include "migration/impl/MigratorsRegister.hpp"
13template <
typename BackendType>
17using MigrationProcessor =
18 CassandraSupportedMigrators<migration::cassandra::CassandraMigrationBackend>;
22using MigrationQuerier = CassandraSupportedMigrators<data::BackendInterface>;
26namespace migration::cassandra {
28using CassandraMigrationInspector = migration::impl::MigrationInspectorBase<MigrationQuerier>;
30using CassandraMigrationManager = migration::impl::MigrationManagerBase<MigrationProcessor>;
The register of migrators. It will dispatch the migration to the corresponding migrator....
Definition MigratorsRegister.hpp:50