db/schema_tables: Wire up drop column notifications

Signed-off-by: Pekka Enberg <penberg@scylladb.com>
This commit is contained in:
Pekka Enberg
2015-10-01 13:22:18 +03:00
parent b1e6ab144a
commit b89b70daa8

View File

@@ -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();
}
}
});
});