chore(): small improvements
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 5.2.11 on 2026-02-23 14:56
|
||||
|
||||
import django.core.validators
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('flags', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='featureflag',
|
||||
name='key',
|
||||
field=models.CharField(help_text='Unique identifier for the feature flag', max_length=100, unique=True, validators=[django.core.validators.RegexValidator(message='Event type name must follow snake_case, camelCase, or PascalCase.', regex='^[A-Za-z][A-Za-z0-9_]*$')], verbose_name='key'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user