collab: Allow enabling feature flags for all users (#16372)

This PR adds a new `enabled_for_all` column to the `feature_flags` table
to allow enabling a feature flag for all users.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-08-16 15:17:03 -04:00 committed by GitHub
parent 2180dbdb50
commit 35cd397a40
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 34 additions and 13 deletions

View file

@ -0,0 +1 @@
alter table feature_flags add column enabled_for_all boolean not null default false;