blob: dacb8f3867649ac44f7bc6e0ad05837818498000 (
plain)
1
2
3
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;
|