You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ansible_base/feature_flags/migrations/0001_initial.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Generated by Django 4.2.17 on 2025-06-04 12:00
1
+
# Generated by Django 4.2.17 on 2025-06-06 16:22
2
2
3
3
importansible_base.feature_flags.models.aap_flag
4
4
fromdjango.confimportsettings
@@ -24,7 +24,7 @@ class Migration(migrations.Migration):
24
24
('name', models.CharField(help_text='The name of the feature flag. Must follow the format of FEATURE_<flag-name>_ENABLED.', max_length=64, validators=[ansible_base.feature_flags.models.aap_flag.validate_feature_flag_name])),
25
25
('ui_name', models.CharField(help_text='The pretty name to display in the application User Interface', max_length=64)),
26
26
('condition', models.CharField(default='boolean', help_text='Used to specify a condition, which if met, will enable the feature flag.', max_length=64)),
27
-
('value', models.CharField(default='True', help_text='The value used to evaluate the conditional specified.', max_length=127)),
27
+
('value', models.CharField(default='False', help_text='The value used to evaluate the conditional specified.', max_length=127)),
28
28
('required', models.BooleanField(default=False, help_text="If multiple conditions are required to be met to enable a feature flag, 'required' can be used to specify the necessary conditionals.")),
29
29
('support_level', models.CharField(choices=[('NOT_FOR_USE', 'Not for use'), ('NOT_FOR_PRODUCTION', 'Not for production'), ('READY_FOR_PRODUCTION', 'Ready for production')], help_text='The support criteria for the feature flag. Must be one of (NOT_FOR_USE, NOT_FOR_PRODUCTION, READY_FOR_PRODUCTION).', max_length=25)),
30
30
('visibility', models.CharField(choices=[('public', 'public'), ('private', 'private')], help_text='The visibility level of the feature flag. If private, flag is hidden.', max_length=20)),
0 commit comments