chore: choice field migration for Epic Updates (#3076)

This commit is contained in:
Nikhil
2025-04-29 17:54:01 +05:30
committed by GitHub
parent 4c892a8a34
commit 3fc2df835b

View File

@@ -0,0 +1,28 @@
# Generated by Django 4.2.20 on 2025-04-29 12:08
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('ee', '0029_workspacecredential_source_authorization_type_and_more'),
]
operations = [
migrations.AlterField(
model_name='entityissuestateactivity',
name='entity_type',
field=models.CharField(choices=[('CYCLE', 'Cycle'), ('MODULE', 'Module'), ('PROJECT', 'Project'), ('TEAM', 'Team'), ('EPIC', 'Epic')], max_length=30),
),
migrations.AlterField(
model_name='entityprogress',
name='entity_type',
field=models.CharField(choices=[('CYCLE', 'Cycle'), ('MODULE', 'Module'), ('PROJECT', 'Project'), ('TEAM', 'Team'), ('EPIC', 'Epic')], max_length=30),
),
migrations.AlterField(
model_name='entityupdates',
name='entity_type',
field=models.CharField(choices=[('CYCLE', 'Cycle'), ('MODULE', 'Module'), ('PROJECT', 'Project'), ('TEAM', 'Team'), ('EPIC', 'Epic')], max_length=30),
),
]