22#include "data/BackendInterface.hpp"
23#include "migration/cassandra/CassandraMigrationBackend.hpp"
24#include "migration/impl/MigrationInspectorBase.hpp"
25#include "migration/impl/MigrationManagerBase.hpp"
26#include "migration/impl/MigratorsRegister.hpp"
32template <
typename BackendType>
36using MigrationProcessor = CassandraSupportedMigrators<migration::cassandra::CassandraMigrationBackend>;
40using MigrationQuerier = CassandraSupportedMigrators<data::BackendInterface>;
44namespace migration::cassandra {
46using CassandraMigrationInspector = migration::impl::MigrationInspectorBase<MigrationQuerier>;
48using CassandraMigrationManager = migration::impl::MigrationManagerBase<MigrationProcessor>;
The register of migrators. It will dispatch the migration to the corresponding migrator....
Definition MigratorsRegister.hpp:67