summaryrefslogtreecommitdiff
path: root/migrations/028_drop_feature_toggles.sql
diff options
context:
space:
mode:
Diffstat (limited to 'migrations/028_drop_feature_toggles.sql')
-rw-r--r--migrations/028_drop_feature_toggles.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/migrations/028_drop_feature_toggles.sql b/migrations/028_drop_feature_toggles.sql
new file mode 100644
index 0000000..dacb8f3
--- /dev/null
+++ b/migrations/028_drop_feature_toggles.sql
@@ -0,0 +1,4 @@
+-- The feature toggle system (012_feature_toggles.sql) never gated any actual
+-- behavior -- nothing in the codebase read a toggle's enabled state outside
+-- of its own CRUD handlers. Dead weight, removed from Settings.
+DROP TABLE IF EXISTS feature_toggles;