diff --git a/db/schema_tables.cc b/db/schema_tables.cc index e52e80aba7..d85de94d85 100644 --- a/db/schema_tables.cc +++ b/db/schema_tables.cc @@ -726,6 +726,9 @@ future<> save_system_keyspace_schema() { for (auto&& cfm : created) { service::migration_manager::notify_create_column_family(cfm).get0(); } + for (auto&& cfm : dropped) { + service::migration_manager::notify_drop_column_family(cfm).get0(); + } } }); });