# Generated by Django 5.2 on 2026-05-19 11:21

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('settings', '0007_alter_platformfeatureflag_feature_key'),
    ]

    operations = [
        migrations.AlterField(
            model_name='platformfeatureflag',
            name='feature_key',
            field=models.CharField(choices=[('binary_tree_details_for_users', 'Show binary tree node details to regular users'), ('chat_enabled', 'Enable in-system distributor chat globally'), ('registration_enabled', 'Allow new user registrations from public web app'), ('login_enabled', 'Allow user login from public web app')], max_length=100, unique=True),
        ),
    ]
