Gate it behind feature flags

This commit is contained in:
Sasha Krassovsky
2024-01-18 02:30:06 +00:00
committed by Sasha Krassovsky
parent 0a7e050144
commit 71f495c7f7
5 changed files with 20 additions and 7 deletions

View File

@@ -90,6 +90,9 @@ pub enum ComputeFeature {
/// track short-lived connections as user activity.
ActivityMonitorExperimental,
/// Enable running migrations
Migrations,
/// This is a special feature flag that is used to represent unknown feature flags.
/// Basically all unknown to enum flags are represented as this one. See unit test
/// `parse_unknown_features()` for more details.